我有opencart。将产品添加到购物车的函数 addToCart() 在普通页面上正常工作。
我制作了自定义页面,其中只有触发函数 addtoCart() 的按钮。只是普通的按钮..
在正常页面(它工作的地方)我得到正常的响应。
请看这个图片链接:http: //imgur.com/7M1AR1B,FKjiU05,9ggmiMR#2
第三张图片实际上是可以正常工作的帖子,第二张图片是可以正常工作的响应。第一张图片是我在打开购物车的自定义页面中得到的空响应。
你知道为什么会这样吗?
我使用函数 addToCart() 并在该自定义页面中使用硬变量 FOR TEST,这意味着变量总是可以传递。我使用硬变量,所以我不必解释如何在代码中将变量传回(它的工作原理相同,它在调试中传递所有内容)。问题是我只在定制页面上得到“空”响应。回复: [] ...
function addToCart() {
var product_id = 79;
var quantity = 1;
$.ajax({
url: 'index.php?route=checkout/cart/add',
type: 'post',
data: 'product_id=' + product_id + '&quantity=' + quantity,
dataType: 'json',
success: function (json) {
$('.success, .warning, .attention, .information, .error').remove();
if (json['redirect']) {
location = json['redirect'];
}
if (json['success']) {
$('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>');
$('.success').fadeIn('slow');
$('#cart-total').html(json['total']);
$('html, body').animate({
scrollTop: 0
}, 'slow');
}
}
});
}