admin管理员组文章数量:1347688
Currently I am trying to use an existing array to map it to another array in order to match what the server wants.
for example...
I have an array:
$scope.users = [{
"firstName": "john",
"middleName": null,
"lastName": "doe",
"registrationNumber": "334"
},
{
"firstName": "paul",
"middleName": null,
"lastName": "dean",
"registrationNumber": "223"
},
{
"firstName": "andrew",
"middleName": null,
"lastName": "mac",
"registrationNumber": "132"
}
]
however I want it to look like this...
[{
name: "john doe",
value: {
registration: 334,
last: "doe",
first: "john"
}
}]
So what I've been doing is something like this to map it out...but it only gets the first one.
var list = [{
name: $scope.users[0].firstName + ' ' + $scope.users[0].lastName,
value: {
registration: $scope.users[0].registrationNumber,
first: $scope.users[0].firstName,
last: $scope.users[0].lastName
}
}];
I tried to use angular.forEach
to get all the list and push it...but hasn't really worked too well yet... any help would be great!
Currently I am trying to use an existing array to map it to another array in order to match what the server wants.
for example...
I have an array:
$scope.users = [{
"firstName": "john",
"middleName": null,
"lastName": "doe",
"registrationNumber": "334"
},
{
"firstName": "paul",
"middleName": null,
"lastName": "dean",
"registrationNumber": "223"
},
{
"firstName": "andrew",
"middleName": null,
"lastName": "mac",
"registrationNumber": "132"
}
]
however I want it to look like this...
[{
name: "john doe",
value: {
registration: 334,
last: "doe",
first: "john"
}
}]
So what I've been doing is something like this to map it out...but it only gets the first one.
var list = [{
name: $scope.users[0].firstName + ' ' + $scope.users[0].lastName,
value: {
registration: $scope.users[0].registrationNumber,
first: $scope.users[0].firstName,
last: $scope.users[0].lastName
}
}];
I tried to use angular.forEach
to get all the list and push it...but hasn't really worked too well yet... any help would be great!
- 2 ever heard of Array.map? – juvian Commented Jul 24, 2017 at 20:50
1 Answer
Reset to default 7A solution could be:
var list = $scope.users.map(function(user) {
return {
name: user.firstName + ' ' + user.lastName,
value: {
registration: user.registrationNumber,
first: user.firstName,
last: user.lastName
}
};
});
Explanation
Array.map() iterates over the existing array and returns a new modified one.
So you have to use map
on $scope.users
and for each user
you want to return a new object. In each iteration you have access on each user
. The new objects will be stored inside list
which will be an array.
本文标签: javascripthow to map an array to another array with different values (angularJs)Stack Overflow
版权声明:本文标题:javascript - how to map an array to another array with different values (angularJs) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743839881a2548077.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论