对象的属性名称问题
我有这个功能:
private function returnFees(row:Object,name:String):int
{
var fee:int;
for each(var obj:Object in row)
{
if(obj==name)
{
//fee=obj as int;
}
}
return fee;
}
我想将属性名称与“名称”进行比较。但在这段代码中,“obj”给我的是属性的值而不是名称。
有什么想法吗?谢谢
I have this function:
private function returnFees(row:Object,name:String):int
{
var fee:int;
for each(var obj:Object in row)
{
if(obj==name)
{
//fee=obj as int;
}
}
return fee;
}
I want to compare the name of properties to the 'name'. But in this code the 'obj' is giving me the values of properties not the name.
Any ideas? thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不是您必须使用的
for every
,而是一个简单的for
。for every
将为您提供值,for
将为您提供属性名称:It's not a
for each
you have to use but a simplefor
.for each
will give you the values andfor
the property name :