我正在使用 Sencha Touch 2 创建一个移动应用程序,它将根据来自服务器的 Json 响应动态加载其视图。
这意味着在加载视图之前,我必须用一些通用元素组成视图。例如,如果我从服务器接收到与List视图对应的 Json 字符串,我将不得不用store和proxy动态地填充列表项(名称、url、描述) 。
这可行,但是我想在该列表中选择一些项目并加载另一个列表,但这次我想更改代理。我的新代理是所选项目的url字段。我从所选项目中获取url字段并更改代理,但这会带来一个问题:
我正在使用Ext.navigation.View,并且我想维护导航历史记录。在上述情况下,如果我返回导航历史记录,则第一个列表中的项目将更改为最后一个列表中的项目。
我正在寻找某种工作流来实现视图的动态加载,具体取决于每个视图的独立数据,并始终维护 MVC-Store 模式和导航历史记录。
这是我的列表项模型:
Ext.define('ExampleApp.model.ListItem', {
extend: 'Ext.data.Model',
config: {
fields: ['name', 'url', 'descriprion']
}
}
这是列表的商店:
Ext.define('ExampleApp.store.ListItems', {
extend: 'Ext.data.Store',
config: {
autoLoad: false,
model: 'ExampleApp.model.ListItem',
proxy: {
type: 'jsonp'
url: 'http://mydomain.com/myjsonresponse',
reader: {
type: 'json',
useSimpleAccessors: true
}
}
}
})
这是我的看法:
Ext.define('ExampleApp.view.MyList', {
extend: 'Ext.List',
xtype: 'mylist',
requires: ['ExampleApp.store.ListItems'],
config: {
title: 'My List',
itemTpl: '{name} - {description}',
store: 'ListItems'
}
})
这是在我的列表的itemtap事件上调用的函数:
listItemTapped: function (view, index, target, record, event) {
var listItems = Ext.getStore('ListItems');
listItems.getProxy().setUrl(record.get('url'));
listItems.load();
this.getMain().push({
xtype: mylist
});
}