我有这样的 url,这是一个 js 文件示例,例如这个链接http://www.mysite.com/json.js 并且该链接将输出一个 json 格式的值,如下所示:
{
"note":null,
"attributes":null,
"total_price":9980,
"total_weight":0,
"item_count":4,
"items":[{
"id":214597138,
"title":"Acai +",
"price":2495,
"line_price":9980,
"quantity":4,
"sku":"",
"grams":0,
"vendor":"Delta Labs",
"variant_id":214597138,
"url":"/products/acai",
"image":"http://cdn.shopify.com/s/files/1/0156/4994/products/acai_bottle.png?385",
"handle":"acai",
"requires_shipping":true
}],
"requires_shipping":true}
现在我想获取该链接,然后在我的 jquery 上,我将如何使用该链接和 json 输出来获取标题、url、价格、sku 等值?
我在谷歌上搜索是否有一些函数可以处理这个问题,我发现了 jQuery.getJSON,但我不太了解,或者它是否适用于我想要完成的任务?
顺便说一下,http ://www.mysite.com/json.js,它的json值是动态的,所以就是我要抓取的链接,输出json内容