如何更改 Flex ArrayCollection 中项目的值
我有一个带有预定义值的 ArrayCollection。我想为 arrayCollection 中的项目分配一个新值,但不知道如何操作。基本上我想做这样的事情: acGuages.itemUpdated(0).thevalue = 90; (将值从 25 更改为 90)。谢谢。
private var arrayGuages:Array=[
{thevalue:"25",height:"115"},
{thevalue:"45",height:"115"},
{thevalue:"15",height:"115"},
{thevalue:"95",height:"115"},
];
[Bindable]
public var acGuages:ArrayCollection=new ArrayCollection(arrayGuages);
acGuages.itemUpdated(0).thevalue = 90;
I have an ArrayCollection with values predefined. I want to assign a new value to items in the arrayCollection but can not figure out how. Basically I want to do something like this: acGuages.itemUpdated(0).thevalue = 90; (Changing the value from 25 to 90). Thanks.
private var arrayGuages:Array=[
{thevalue:"25",height:"115"},
{thevalue:"45",height:"115"},
{thevalue:"15",height:"115"},
{thevalue:"95",height:"115"},
];
[Bindable]
public var acGuages:ArrayCollection=new ArrayCollection(arrayGuages);
acGuages.itemUpdated(0).thevalue = 90;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ArrayCollection 支持随机访问其元素,就像 Array 一样。换句话说,您的行:
可以重写为:
并且它应该按预期工作。
ArrayCollection supports random access to its elements, just like Array. In other words, your line:
Can be rewritten as:
And it should all work as expected.