Невозможно получить корзину для обновления с помощью Ajax в Shopify
Я пытался использовать POST-запрос для добавления товара в корзину, когда общая цена и поставщик равны определенному поставщику.
updateCart: function(cart) {
let total = 0;
for (var i = 0; i < cart.items.length; i++){
total += cart.items[i].price * cart.items[i].quantity;
if(total >= 7500) && (cart.items[i].vendor == "Ox Tools"){
jQuery.getJSON(
'/products/Ox-Pro-Heavy-Duty-Tape-Measure-8M',
function(product) {
alert('The title of this product is ' + product.title);
}
);
jQuery.post(
'/cart/add.js',
{
quantity: 1,
id: 1677113753674
}
);