加入购物车报错
来源:6-14 代码提交与本章知识点总结

JessicaWx
2017-07-18
$(document).on('click', '.cart-add', function(){
_cart.addToCart({
productId : _this.data.productId,
count : $('.p-count').val()
}, function(res){
window.location.href = './result.html?type=cart-add';
}, function(errMsg){
_mm.errorTips(errMsg);
});
});
写回答
1回答
-
从mm.request里开始追一下,看哪出错了
0102017-07-20
相似问题