api示例具有针对safari和移动chrome的错误回调语法

时间:2016-06-07 19:00:06

标签: bigcommerce

因此,在此示例中,回调函数语法将在Safari和移动Chrome和Safari上中断。

utils.api.cart.getContent(options, (err, response) => {
  $modalOverlay.hide();
  $cartCounter.text(response.data.cart.items.length + " items in your cart");
  $modalContent.html(response.content);
});

应该写成......

utils.api.cart.getContent(options, function(err, response) {
  $modalOverlay.hide();
  $cartCounter.text(response.data.cart.items.length + " items in your cart");
  $modalContent.html(response.content);
});

1 个答案:

答案 0 :(得分:0)

代码示例使用ES6语法。您可以在此处查看其他示例:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions