根据shopify的文档,此方法应该可以工作,但不能确定它对我不起作用。
下面是我的代码小贴士。
ShopifyPOS.ready(function(){
console.log('Start of ShopifyPOS.ready');
ShopifyPOS.fetchCart({
success: function(cart) {
console.log('success');
// read the cart or call any cart functions here
// e.g. cart.line_items or cart.addLineItem(...)
},
error: function(errors) {
//ShopifyPOS.flashError("Failed to retrieve cart")
console.log('errors');
}
});
console.log('End of ShopifyPOS.ready');
});
这是我的控制台输出:
check here 如控制台输出所示,似乎ShopifyPOS.ready没有被调用!