>  Q&A  >  본문

javascript - 如何获取json对象中的特定值?

{
    "id": "some",
    "title": "some",
    "author": {
        "name": "\u95eb\u9759"
    },
    "link": [{
        "@attributes": {
            "href": "http://localhost/",
            "rel": "some"
        }
    },
    {
        "@attributes": {
            "href": "http://localhost/",
            "rel": "some"
        }
    },
    {
        "@attributes": {
            "href": "http://localhost/",
            "rel": "some"
        }
    }]
}

如上,对于服务器返回的json数据,如何获取Link中第一个@attributes的href值?

PHPzPHPz2769일 전850

모든 응답(4)나는 대답할 것이다

  • 数据分析师

    数据分析师2017-10-01 01:13:33

    javascript - json 객체에서 특정 값을 얻는 방법은 무엇입니까? -PHP 중국어 Q&A-javascript - json 객체에서 특정 값을 얻는 방법은 무엇입니까? -PHP 중국어 홈페이지 Q&A

    꼭 보고 배워보세요.

    회신하다
    0
  • 巴扎黑

    巴扎黑2017-04-10 12:43:07

    var req = { ...你的返回对象... };
    var first_href_val = req.link[0]['@attributes'];

    회신하다
    0
  • 迷茫

    迷茫2017-04-10 12:43:07

    There is the json site(http://www.json.org/), it lists the tutorial of all languages supporting json.
    May be it is helpful.

    for python(http://docs.python.org/library/json.h...)
    for ruby(http://flori.github.com/json/)

    회신하다
    0
  • 高洛峰

    高洛峰2017-04-10 12:43:07


    function getJsonValue(obj,name){ var result = null; var value = null; for(var key in obj){ value = obj[key]; if(key == name){ return value; } else { if( typeof value == "object" ){ result = getJsonValue(value,name); } } } return result; }

    采用递归方式来查找josn中的你需要的key.

    但是还不支持 数组,你可以自己扩充,思路就是这样!

    var taskId = getJsonValue(jsonobj,"history");
    console.log(taskId);
    var jsonobj = { "semantic":{"taskId":"8.4.3"},"history":"cn.xxxx.fund"};
    

    회신하다
    0
  • 취소회신하다