gpt4 book ai didi

shopify - 如何在我的应用程序 js 文件中获取购物车对象

转载 作者:行者123 更新时间:2023-12-01 22:17:25 26 4
gpt4 key购买 nike

您好,我正在开发 shopify 应用程序。使用 script_tag 我为 shopify 商店前端添加了 custom.js。当查看源代码时,我可以看到自定义到 js 的添加成功

基本上我需要一个函数或对象 如果我们在 shopify 中有我可以在我的 custom.js 文件中使用记住我不是在谈论主题文件返回我购物车的完整信息像多少添加产品等,因为我需要将我的ajax请求发送到php文件的特定对象有没有办法在我的应用程序 js 文件中获取购物车详细信息?

最佳答案

由于您使用的是 (.js) 文件,因此您无法直接访问购物车对象。相反,您可以使用 (.js.liquid) 文件类型来访问购物车对象。 (.js) 和 (.js.liqud) 的工作方式相似。但是通过使用 (.js.liquid) 文件格式,您将能够访问所有 shopify 对象。

代码...

对于(.js.liquid)文件类型引用cart object购物

但如果您想访问 (.js) 文件中的购物车对象,您可以通过 GET 调用以 json 格式访问。

$.ajax({
type: 'GET',
url: '/cart.js',
cache: false,
dataType: 'json',
success: function(cart) {
// whatever you want to do with the cart obj
}
});

关于shopify - 如何在我的应用程序 js 文件中获取购物车对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43740453/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com