0

我正在使用网格视图应用程序......我想要做的是当我调用特定项目时导航到特定页面。

这是我调用项目时的代码,我的 问题是我无法获取项目的索引。 一张图解释我的意思 http://www.flickr.com/photos/magedelgazzar/8409848728/in/photostream

        _itemInvoked: function (args) {
            var group = Data.groups.getAt(args.detail.itemIndex);
            var item  = Data.items.getAt(args.detail.itemIndex);

            if (appView.value === appViewState.snapped) {
                // If the page is snapped, the user invoked a group.
                this.navigateToGroup(group.key);
            } else {
                // If the page is not snapped, the user invoked an item.
                if ( item.index == 1 && group.index == 2 ) {
                    nav.navigate("../../nextPage.html", { item: Data.getItemReference(item) });

//                nav.navigate("../../nextPage.html");
                }
            }
        }

    });
4

1 回答 1

1

使用args.detail.itemIndex您已经用于项目索引的那个。这是获取索引的正确方法;您从getAt通话中获得的项目是您的数据项目,除非您在其index上放置,否则它不会有index属性。

于 2013-01-24T00:15:48.313 回答