在javascript上从数组中获取对象

时间:2015-03-16 18:27:01

标签: javascript arrays json object

Json给我标签“image”作为数组或对象,我只想要一个包含以下内容的新数组:

  • 当“image”是数组时,数组的frist对象(“image”:[.. )。

  • “图像”是对象时的对象(“图像”:{.. )。

¿javascript可以吗?

这是我的json的样本

    {
    "results": {
"collection1": [
  {
    "date": [
      {
        "href": "",
        "text": "Feb"
      },
      {
        "href": "",
        "text": "25"
      },
      {
        "href": "",
        "text": "2015"
      }
    ],
    "image": {
      "alt": "",
      "src": "http://img.rlsbb.com/images/uAJisteKNw.jpg",
      "text": ""
    }
  },
  {
    "date": [
      {
        "href": "",
        "text": "Feb"
      },
      {
        "href": "",
        "text": "18"
      },
      {
        "href": "",
        "text": "2015"
      }
    ],
    "image": [
      {
        "alt": "",
        "src": "http://img.rlsbb.com/images/uAJosteUNw.jpg",
        "text": ""
      },
      {
        "alt": "",
        "src": "http://1.bp.blogspot.com/-VdJQw_nXO0k/UoAwpBL8yjI/AAAAAAAAABU/H_fKtjG8H5Y/s1600/Online.jpg",
        "text": ""
      }
    ]
  }}

0 个答案:

没有答案