Flex mobile - 移至下一页时如何移至 List.selectedItem 中的下一个数据?
当我将 page01 移动到 page02 时,我使用以下代码传递相同的数据:
navigator.pushView(Page02, data);
如何移动到 page02 并传递下一行数据(而不是相同的数据)? 换句话说,如何用pushView递增到下一行数据?
谢谢。
When I move page01 to page02, I pass the same data along with it using the following code:
navigator.pushView(Page02, data);
How do I move to page02 with passing the next row of data (instead of the same data)?
In other word, how to increment to the next row of data with pushView?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有权访问显示要传递到视图中的数据的 List 组件,则可以执行以下操作:
您需要进行一些检查以确保您正在尝试引用实际存在的索引:
If you have access to the List component which displays the data you want to pass into views, you can do something like this:
You'll want to do some checking to make sure that you're trying to reference an index that actually exists: