获取图片网址google cse JSON

时间:2013-09-10 18:32:46

标签: javascript json google-custom-search

我正在尝试从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

请帮忙。

1 个答案:

答案 0 :(得分:0)

看起来产品是一个数组。你有没有尝试过item.pagemap.product [0] .image?