我有两个以下结构的JSON数据 我使用getJSON jquery从服务器获取。
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如何从Citylist Object中的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
});
答案 0 :(得分:1)
您可以使用countrylist
作为属性转换countrylist.Code
。让这个国家成为一项微不足道的任务。
var countries = {};
$.each(countrylist, function(i, country){
countries[ country.Code ] = country.Country;
});
现在,您可以迭代citylist
并从countries
获取国家/地区。
$.each(citylist, function(j, city){
console.log(city.City + "," + countries[ city.ContryCode ]);
});
答案 1 :(得分:0)
var cityList = [];
var countryList = [];
// Assumption: You get countryList populated before calling this one
$.getJSON('../GetCitylist', function (data) {
cityList = data;
var outputString = '';
for(var i in cityList) { // these are each objects ?
// Assumption: You have no spaces in your property names
outputString += cityList[i].City + ',';
// You could also use cityList[i]['City'] if you expect spaces in your property
// names - same below - choose the accessor method that's most appropriate to
// your data
for(var j in countryList) { // these are also objects ?
if(countryList[j].Code === cityList[i].CountryCode) {
outputString += countryList[j].Country;
}
}
outputString += '<br />';
}
$('.selector').html(outputString);
});
答案 2 :(得分:0)
以下是使用$.extend
的可能解决方案:
var countrylist = [{ "Country": "United States", "Code": "us" }, { "Country": "Belgium", "Code": "be" }, {"Country": "Argentina", "Code": "ar" }],
citylist = [{ "City": "Abernant", "Code": "us", "CityId":1},{ "City": "Academy Park", "Code": "be", "CityId": 2},{ "City": "Abernathy", "Code": "ar","CityId":3 }],
newArray = [];
$.each(citylist, function(idx,val){
var code = val.Code;
$.each(countrylist,function(x,valu){
if(valu.Code === code){
newArray.push($.extend({},valu,val));
}
});
});
console.log(newArray);
答案 3 :(得分:0)
您可以使用Alasql JavaScript库。
这是一个主要的运营商:
var data = alasql('SELECT city.City, country.Country FROM ? AS city \
JOIN ? AS country ON city.CountryCode = country.Code',[citylist, countrylist]);
在jsFiddle尝试this sample。
Alasql可以直接将JSON数据下载到SELECT语句:
alasql("SELECT city.City, country.Country \
FROM JSON('../GetCountrylist') AS city \
JOIN JSON('../GetCitylist') AS country \
ON city.CountryCode = country.Code",[], function(data){
// use data
});