getJSONjqueryを使用してサーバーから取得する次の構造の2つのJSONデータがあります。
countrylist = [
{ "Country": "United States", "Code": "us" },
{ "Country": "Belgium", "Code": "be" },
{ "Country": "Argentina", "Code": "ar" },
.
.
.
]
citylist = [
{ "City": "Abernant", "ContryCode": "us", "CityId"=1 },
{ "City": "Academy Park", "ContryCode": "be", "CityId"=2},
{ "City": "Abernathy", "ContryCode": "ar","CityId"=3 },
.
.
.
]
divにCity、Countryを表示する必要があります。CitylistObjectのcountrylistからcountrCodeを検索し、その完全なCountryを配置するにはどうすればよいですか。だから私は表示することができます
Abernant, United States
Academy Park, Belgium
Abernathy, Argentina
私はこれまでにこのコードを持っています
$.getJSON('../GetCountrylist', function (data) {
var countryList =data;
});
$.getJSON('../GetCitylist', function (data) {
//this is where i need to Join the data
//for each data dispaydata= data.City ',' + Country
});