我正在尝试在列表视图中显示一组项目。服务器将单个文件中的所有项目属于各个子类别,并为每个子类别分配类别 ID。目前,如果未应用过滤器,我有一个商店可以导入所有数据。如果是,它会显示属于该特定子类别的项目。
我的店铺代码如下:
Ext.define('RestaurantGlobal.store.SubCategoryColumnsStoreNonVeg', {
extend: 'Ext.data.Store',
requires: [
'RestaurantGlobal.model.ItemColumns'
],
config: {
autoLoad: false,
model: 'RestaurantGlobal.model.ItemColumns',
storeId: 'SubCategoryColumnsStoreNonVeg',
proxy: {
type: 'ajax',
url: 'data/NonVegItemsColumnsStore.json',
reader: {
type: 'json',
rootProperty: 'Item'
}
},
filters: [{
property: 'SubCategory_id',
value: /0c9b01f6b3b2493b907a42e07010064800001/
}]
},
});
我的应用程序有一个显示类别列表的类别视图,然后是一个子类别视图,其中包含属于已选择类别的项目。我想根据用户在上一个视图中选择的类别动态过滤从商店接收到的数据,并将其显示在列表中。我的列表视图代码如下:
Ext.define('RestaurantGlobal.view.SubCategories', {
extend: 'Ext.navigation.View',
xtype: 'SubCategories',
config: {
layout: {
type: 'card'
},
items:[
{
xtype: 'container',
title: 'Category Name',
styleHtmlCls: 'maincontainer',
styleHtmlContent: true,
layout: {
type: 'vbox'
},
items: [
{
xtype: 'container',
title: 'Non-Veg',
margin: '0 10 0 10',
items: [
{
xtype: 'list',
id: 'nonVegList',
autoPaging: true,
height: '100%',
store: 'SubCategoryColumnsStoreVeg',
itemTpl: [
'<div>{Image}{Name}</div>'
],
},
]
},
{
xtype: 'container',
items: [
{
xtype: 'button',
cls: 'btn',
docked: 'bottom',
margin: '0 0 0 0',
text: 'Place Order'
}
]
}
]
}
]
}
});
我的控制器具有分配给前一个类别视图的项目点击功能。函数写在这里:
onCustomDataViewItemTap: function(dataview, index, target, record, e, eOpts) {
categoryId = record._data.id;
var NonVegStore = Ext.create('RestaurantGlobal.store.SubCategoryColumnsStoreNonVeg');
// clear all existing filters
NonVegStore.clearFilter();
NonVegStore.filter('SubCategory_id', '/' + categoryId + '/');
NonVegStore.load();
var NVList = this.getNonVegList;
NVList.setStore(NonVegStore);
var SubCategories = Ext.create('RestaurantGlobal.view.SubCategories');
Ext.Viewport.add(SubCategories);
Ext.Viewport.setActiveItem(SubCategories);
},
在我添加了过滤器,重新加载了商店并将其与列表一起使用,但我收到一条错误消息,提示“setStore”方法不可用。谁能帮我正确地动态实现过滤器?