1、 Ecshop ajax 应用讨论一年多来根据我对 ecshop ajax 应用的了解 总结如下:例:就我个人实现点击购物按钮后立即更新购物车数量方案1、比如我们 category.dwt 里有1. insert name=cart_info同时此页面有1. 添加购物车 0, message = , content = , goods_id = ); 这个也是我们常用的 默认定义数组。c、$json = new JSON;声明 json 类 d、 $goods = $json-decode($_POSTgoods); 数据接收给 $goods4、 比如我们添加购物车成功 我们可以数组里定义 $
2、resulterror=0; 就是把我们用到的数据放入$result 数组形象点 个人理解就是 通过 die($json-encode($result);数据传递给我们刚才的回调函数下来我看回调函数的写法1. function addToCartResponse_xaphp(result)2. 3. if (result.error 0)4. 5. / 如果需要缺货登记,跳转6. if (result.error = 2)7. 8. if (confirm(result.message)9. 10. location.href = user.php?act=add_booking11. 12.
3、 13. / 没选规格,弹出属性选择框14. else if (result.error = 6)15. 16. openSpeDiv(result.message, result.goods_id, result.parent);17. 18. else19. 20. alert(result.message);21. 22. 23. else24. 25.26. getCartNumber();27. 28.29. 30. function getCartNumber()31. Ajax.call(transport.php?act=cart_number, , getCartNumber
4、Response, GET, JSON);32. 解释:回调函数里我们又调用 getCartNumber()函数 在这个函数里我们又一次利用 ajax 查询购物车数量transport.php 代码 1. if($_REQUESTact =cart_number)2. 3. include_once(includes/cls_json.php);4. /$_POSTgoods = json_str_iconv($_GETgoods_id);5.6. $sql = SELECT SUM(goods_number) AS number, SUM(goods_price * goods_number
5、) AS amount .7. FROM . $GLOBALSecs-table(cart) .8. “ WHERE session_id = “ . SESS_ID . “ AND rec_type = “ . CART_GENERAL_GOODS . “;9. $row = $GLOBALSdb-GetRow($sql);10.11. if ($row)12. 13. $number = intval($rownumber);14. $amount = floatval($rowamount);15. 16. else17. 18. $number = 0;19. $amount = 0;
6、20. 21.22.23. $json = new JSON;24. $resultcontent = $number;25. die($json-encode($result);26. 然后在传回回调函数 1. function getCartNumberResponse(result)2. /alert(result.content);3. var message = (+result.content+);4. document.getElementById(cart_count_all).innerHTML = message;5. 好 我们接收数据库查询到的数量 然后通过 innerHTML 写入到 cart_count_all层 搞定。以上俩次应用了 ajax ,只要大家看完例子我相信对 ec ajax 的功能定可以掌握,以便我们可以轻松应用。