与新Sencha Touch 2 和我有问题的工作 与拖拉机,json,等等...
很简单,但我不能采取解决方案。
我有一个由Json完成的名单。这个json来自Drupal7 视图,以json格式。
在我看来,我有类似的东西:
var listaArtistas = {
xtype: list ,
title: Artistas ,
height: 240,
store: {
autoLoad: true,
fields: [ node ],
proxy: {
type: ajax ,
url: http://localhost/json-artistas ,
reader: {
type: json ,
rootProperty: nodes
}
}
},
listeners: {
itemtap: function(lista,index,target,record,e,eOpts)
{
var artistDetail = new Ext.create( app.view.ArtistDetail );
panelHomeNav.push(artistDetail);
}
},
itemTpl: tpl
};
这个代码对我管用 完全取消艺术家的名单
现在,我点击艺术家,然后转到另一个观点(艺术家Detail ) 。 但是,要正确显示这个列表,并列出艺术家的详细情况,就需要我以前喜欢的艺术家的身份。
我需要在艺术家Detail.. url: http://localhost/json-artistasDetail +NID, 国家ID是先前名单上的艺术家的身份。
我不知道如何在Sencha的两个观点之间通过这个参数
感谢您的帮助... 或读:D