我正在尝试从JSON CSE检索图像并且没有成功,我能够通过
检索标题和描述 for (var i = 0; i < response.items.length; i++)
{
var item = response.items[i];
var title = item.htmlTitle;
...
但是我无法从JSON查询图像URL,这里是JSON模式:
"items": [
{
"kind": "",
"title": "",
"htmlTitle": "",
"link": "",
"displayLink": "",
"snippet": "",
"htmlSnippet": "",
"cacheId": "",
"formattedUrl": "",
"htmlFormattedUrl": "",
"pagemap": {
"product": [
{
"name": "",
"image": "",
"description": ""
}
],
"cse_image": [
{
"src": ""
}
],
我试过了:
item.pagemap.product.image
item.[pagemap][product].image
item.product.image
etc
请帮忙。
答案 0 :(得分:0)
看起来产品是一个数组。你有没有尝试过item.pagemap.product [0] .image?