admin管理员组文章数量:1349221
I have a list in AngularJS, $scope.list[];
What I want to know is how can I fill that list to fit a key,value structure like this:
$scope.list[{key,value},{key,value}];
and I want to fill that "map" with data ing in json format:
{
exportData {
id: 1,
name : "Peter",
lastname : "Smith"
age : 36
}
}
Where the Id is going to be the KEY and the rest of the strucure is going to be de VALUE
For example in a structure like this:
[
1: {
name : "Peter",
lastname : "Smith"
age : 36
},
2: {
name : "John",
lastname : "Carlos"
age : 40
},
]
I have a list in AngularJS, $scope.list[];
What I want to know is how can I fill that list to fit a key,value structure like this:
$scope.list[{key,value},{key,value}];
and I want to fill that "map" with data ing in json format:
{
exportData {
id: 1,
name : "Peter",
lastname : "Smith"
age : 36
}
}
Where the Id is going to be the KEY and the rest of the strucure is going to be de VALUE
For example in a structure like this:
[
1: {
name : "Peter",
lastname : "Smith"
age : 36
},
2: {
name : "John",
lastname : "Carlos"
age : 40
},
]
Share
Improve this question
edited May 23, 2016 at 4:45
kennechu
asked May 23, 2016 at 4:27
kennechukennechu
1,4229 gold badges25 silver badges37 bronze badges
3
- I still don't get what you currently have, what the problem is, and what's your expected result.. – choz Commented May 23, 2016 at 4:30
- but export data shouldn't be an array? – dminones Commented May 23, 2016 at 4:33
- Hi @choz What I have is just the reponse in JSON, and I was looking for something similar to a "map" in JS and AngularJS, my problem is that I dont know if there's something similar to a map in JS like for example in Java where you can declare a map object and then how can I fill that map with the values ing in my reponse, in this case is json format. – kennechu Commented May 23, 2016 at 4:51
2 Answers
Reset to default 4I written the below code as per your need, hope it will help you:
var data = [
{
id: 1,
name : "Peter",
lastname : "Smith",
age : 36
}, {
id: 2,
name : "Peter",
lastname : "Smith",
age : 36
}
];
$scope.itemList = [];
angular.forEach(data, function(item){
var obj = {};
var valObj = {};
valObj.name = item.name;
valObj.lastname = item.lastname;
valObj.age = item.age;
obj[item.id] = valObj;
$scope.itemList.push(obj);
});
Hope this function will help you
$scope.transform = function(exportData){
var _value = {};
_value.name = exportData.name;
_value.lastname = exportData.lastname;
_value.age = exportData.age;
var item = [exportData.id, _value];
$scope.list.push(item);
}
本文标签:
版权声明:本文标题:javascript - Create map (Key,Value) structure in AngularJS and fill with data from JSON - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743858517a2551302.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论