加速器。将索引值插入数组访问失败
我正在使用 Appcelerator 开发 iOS 应用程序。我有一个表,在每一行上都有一个属性,用于保存该行的索引(位置:i)。我将此属性发送到编辑窗口中,以便我可以更新数据数组。
我真的很想使用下面的代码来准确指定我想要在数组中更新的内容,但是如果我从上一个窗口获取该属性并将其插入方括号中,则会出现错误。我怀疑它与整数和字符串有关。
这段代码可以工作,但是是硬编码的:
data.emails[0].email.desc = desc.textfield.value;
我想使用这个:
data.emails[window.position].email.desc = desc.textfield.value;
我怎样才能实现这个?
I am developing an iOS app using Appcelerator. I got a table and on each row I got a property that holds the index for that row (position: i). I am sending this property along into the edit window so that I can update the data array.
I really would like to use the code below to specify exactly what I want to update in the array but if I take the property from previous window and inserting it in the square brackets I get errors. I suspect it has something to do with integers and strings.
This code works, but is hardcoded:
data.emails[0].email.desc = desc.textfield.value;
I would like to use this:
data.emails[window.position].email.desc = desc.textfield.value;
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论