我有两个要同时使用的API,API1和API2。

API2将新闻提要传递给API1,而API1以列表形式处理所有内容。这意味着,如果单击API1中的任何列表,它将使用已定义的ID从API2检索新闻提要。

谁可以在这里帮助我?我被困住了。我的代码的屏幕快照在这里:http://i1159.photobucket.com/albums/p637/Apulo_Cosmas/2API.jpg

非常感谢。

最佳答案

根据此处的Sencha文档(在“挖掘”下):http://docs.sencha.com/touch/2-0/#!/guide/first_app

您需要使用此代码向配置中添加侦听器和详细信息面板(不需要引用contentId,只需要从原始提要中提取description属性(其中包含内容)即可):

detailCard: {
    xtype: 'panel',
    scrollable: true,
    styleHtmlContent: true
},

listeners: {
    itemtap: function(nestedList, list, index, element, post) {
        this.getDetailCard().setHtml(post.get('description'));
    }
}

09-25 15:56