2016-09-30 16 views
0

私は次の形式のJSON配列を持っています。同じ国に属するオブジェクトをフェッチする必要があります。つまり、 "country"キーまたは "country_short"私のJSPのキー。誰か助けてくれますか?JSON配列から特定のオブジェクトをフェッチする際に助けが必要

[{ 
    "country_short": "USA", 
    "city": "Butler", 
    "description": "", 
    "date_new": "2016-09-27 21:26:23", 
    "url": "--", 
    "country": "United States", 
    "company": "Cargill", 
    "title": "Yard Driver", 
    "reqid": "BUT00451", 
    "state": "Wisconsin", 
    "state_short": "WI", 
    "location": "Butler, WI", 
    "guid": "04F2182583FC429BBAEF8B86F8467A55", 
    "uid": null 
}, { 
    "country_short": "CAN", 
    "city": "Camrose", 
    "description": "", 
    "date_new": "2016-09-27 21:26:23", 
    "url": "--", 
    "country": "Canada", 
    "company": "Cargill", 
    "title": "Agronomy Associate", 
    "reqid": "CAN00437", 
    "state": "Alberta", 
    "state_short": "AB", 
    "location": "Camrose, AB", 
    "guid": "9FB7383A512F48F893C535765F9FBE4F", 
    "uid": null 
}] 

ありがとうございました!

答えて

0

あなたはこの

a.filterようJSフィルター法を使用することができる(関数(アイテム){(item.country_short.toLowerCaseを返す)== 'USA'})。

+0

ありがとうございます。しかし、私はJSを使うはずがありません。私はSimple JSONを使ってそれを行うことができました –

関連する問題