admin管理员组文章数量:1339477
In my angular 2 application I have declared 2 object arrays.
users: User[];
selectedUsers: User[];
Now I am using the filter()
method to return an array with objects whose checked property is true.
this.selectedUsers = this.users.filter(user => user.isChecked == true);
The problem is the references for elements of both arrays are same. So is there a way to that I can filter out objects and return array of new objects(new reference)?
In my angular 2 application I have declared 2 object arrays.
users: User[];
selectedUsers: User[];
Now I am using the filter()
method to return an array with objects whose checked property is true.
this.selectedUsers = this.users.filter(user => user.isChecked == true);
The problem is the references for elements of both arrays are same. So is there a way to that I can filter out objects and return array of new objects(new reference)?
Share Improve this question edited Jan 5, 2017 at 14:27 Poul Kruijt 72k12 gold badges152 silver badges151 bronze badges asked Jan 5, 2017 at 14:21 kiranghule27kiranghule27 4431 gold badge8 silver badges20 bronze badges 3- So you want a new array with a clone of every user which is checked, right? – Pablo Lozano Commented Jan 5, 2017 at 14:24
-
That won't work, since filter expects a function that returns a bool and doesn't care for the result. This should work:
this.selectedUsers = this.users.filter(user => user.isChecked == true).map(user => deepCloneUser(user));
. If writing deep clone is too tedious manually lodash & co have utility methods for it. – Matthias247 Commented Jan 5, 2017 at 14:29 - @Pablo yes. Basically creating new objects with same properties as the ones that are 'isChecked'. – kiranghule27 Commented Jan 5, 2017 at 16:53
3 Answers
Reset to default 9You can always use Array.prototype.map to create a new array and Object.assign to create a new object:
this.users.filter(user => user.isChecked).map(u => Object.assign({},u));
You can use _.cloneDeep function ("lodash" library):
for implement lodash in typescript you need:
npm i -S lodash
and the @types lib :
npm i -S @types/lodash
and in your code:
import * as _ from 'lodash'
let cloneCheckedObject = _.cloneDeep(this.users.filter(user => user.isChecked);
Lets take @Amir answer and make it a tiny bit more typescript friendly:
this.users.filter(user => user.isChecked).map(u => {...u});
本文标签: javascriptTypescript filter methodStack Overflow
版权声明:本文标题:javascript - Typescript filter method - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743581501a2505795.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论