如何更改actionscript3中对象属性的值?
我将首先展示我的代码。
var modules:Object = new Object();
modules = DPServices.getModules.lastResult;
for each (var item:Object in modules){
if(item.menu == 0){
// Don't know what to do here!!
}
}
modulesDG.dataProvider = modules;
顺便说一下,这是 ActionScript 3。
我想要做的是将值从 0 更改为“否”或将 1 更改为“是”。我尝试过 modules.menu = 'no'
、modules.item.menu = 'no'
和 modules.@menu = 'no'
>。那么我该如何改变这个值呢?
I'll start by showing my code.
var modules:Object = new Object();
modules = DPServices.getModules.lastResult;
for each (var item:Object in modules){
if(item.menu == 0){
// Don't know what to do here!!
}
}
modulesDG.dataProvider = modules;
By the way this is ActionScript 3.
What I am trying to do is change the value from a 0 to 'No' or a 1 to 'Yes'. I have tried modules.menu = 'no'
, modules.item.menu = 'no'
, and modules.@menu = 'no'
. So how do I change this value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
模块是对象的对象吗?如果没有,这应该没问题:
Is modules an object of objects? If not, this should be fine:
如果菜单为 0,您想将其更改为 1 吗?
仅仅这样做还不够:
虽然我不太确定你在要求什么。
You want to change menu to 1 if it's 0?
Isn't it enough to just do:
Though I'm not exactly sure what you're asking for.