解析一个对象并为每个成员添加成员属性
我有一个看起来像这样的对象,
Name Number
---- ------
John one
Major two
Mars one
我想遍历每个成员并检查 Number 并添加一个属性,最终它看起来像这样。
Name Number IsItOne
---- ------ -------
John one True
Major two False
Mars one True
到目前为止,我得到的是对对象进行 foreach 循环,但随后我有两个对象,据我所知,没有机会更改原始对象。
I have an object which looks for example like this
Name Number
---- ------
John one
Major two
Mars one
I want to go through each member and check on Number and add a property that in the end it looks like this.
Name Number IsItOne
---- ------ -------
John one True
Major two False
Mars one True
What I got so far is do a foreach loop through the object but then I have two objects and have no chance as far as I know to change the original object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只是另一个(较短的)版本:
Just another (shorter) version:
看起来就像您正在谈论一组具有属性
Name
和Number
的对象。如果是这样,你可以这样做:
It seems to be like you are talking about a set of objects with properties
Name
andNumber
.If so, you can do like this:
这是一个可能的替代方案。
Here is a possible alternative.