我们对 json 相当缺乏经验,并且无法将来自 Big Cartel 商店的 json 字符串中的对象显示到我们的 WordPress 网站。
因此,如果在我们的 Big Cartel 网站上,我们会加载以下 URL(这只是指向商店购物车位置的链接,末尾带有.json):
例如ourstore.com/cart.json
我们得到以下变量字符串:
{"items":[{"id":59269479,"name":"Test 4","price":"8.0","unit_price":"4.0","shipping":0.0,"tax":0.0,"total":"4.0","quantity":2,"product":"test-4","option":59269479},{"id":59269434,"name":"Test 2","price":"2.0","unit_price":"1.0","shipping":0.0,"tax":0.0,"total":"1.0","quantity":2,"product":"test-2","option":59269434},{"id":59271363,"name":"Test 6","price":"544.0","unit_price":"544.0","shipping":0.0,"tax":0.0,"total":"544.0","quantity":1,"product":"test-6","option":59271363}],"item_count":5,"price":"554.0","total":"554.0"}
从该字符串中,我们基本上只是试图将“item_count”:5变量显示到外部 WordPress 站点。
如果有人有任何想法,将不胜感激!谢谢!