加速器。将索引值插入数组访问失败

发布于 2024-11-19 10:30:58 字数 411 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文