在帐单地址步骤中单击“继续”时,页面会向Mage_Checkout_OnepageController::saveBillingAction
. 该函数应该将表单数据保存到报价单中并返回一个包含属性“goto_section”的JSON对象,即“goto_section”:“shipping_method”。ajax 请求的成功函数会选择这个属性并显示下一步。
我建议您使用 firebug 调试器检查是否POST /checkout/onepage/saveBilling
返回带有goto_section
元素的有效 JSON 对象。如果不是 - saveBilling 函数一定有问题。使用 Xdebug 并在该函数的开头设置一个断点,以检查一切是否正确处理。
另一个可能的问题来源是第三方扩展重写了结帐路由配置。你们店里有可能的嫌疑人吗?尝试停用它们并测试是否可以解决问题。
操作返回的有效 JSON 字符串示例saveBilling
:
{"goto_section":"shipping_method","update_section":{"name":"shipping-method","html":" <dl class=\"sp-methods\">\r\n <dt>Flat Rate<\/dt>\r\n <dd>\r\n <ul>\r\n <li>\r\n <span class=\"no-display\"><input name=\"shipping_method\" type=\"radio\" value=\"flatrate_flatrate\" id=\"s_method_flatrate_flatrate\" checked=\"checked\" \/><\/span>\r\n <label for=\"s_method_flatrate_flatrate\">Fixed <span class=\"price\">$5.00<\/span> <\/label>\r\n <\/li>\r\n <\/ul>\r\n <\/dd>\r\n <\/dl>\r\n<script type=\"text\/javascript\">\r\n\/\/<![CDATA[\r\n var shippingCodePrice = {'flatrate_flatrate':5};\r\n \r\n $$('input[type=\"radio\"][name=\"shipping_method\"]').each(function(el){\r\n Event.observe(el, 'click', function(){\r\n if (el.checked == true) {\r\n var getShippingCode = el.getValue();\r\n var newPrice = shippingCodePrice[getShippingCode];\r\n if (!lastPrice) {\r\n lastPrice = newPrice;\r\n quoteBaseGrandTotal += newPrice;\r\n }\r\n if (newPrice != lastPrice) {\r\n quoteBaseGrandTotal += (newPrice-lastPrice);\r\n lastPrice = newPrice;\r\n }\r\n checkQuoteBaseGrandTotal = quoteBaseGrandTotal;\r\n return false;\r\n }\r\n });\r\n });\r\n\/\/]]>\r\n<\/script>\r\n"},"allow_sections":["shipping"],"duplicateBillingInfo":"true"}