我正在尝试通过 ajax 更改产品的总价格,但这里没有更改的是我的代码。
$.ajax({
type: 'POST',
url: '/cart/change.js',
data: {
id:28641310441556,
total_price:900,
},
dataType: 'json',
success: function() {
//do anything
}
});