先谢谢您
我有自己的自定义后端插件,其中有员工列表,我还放置了搜索字段来搜索员工,当我在搜索文本字段中键入内容时,它会像
那样执行链接http://localhost/shopware_demo/backend/employee_plugin/reloadAssociation?_dc=111111111&id=1&association=employees&page=1&start=0&limit=20,但是它没有附加在搜索文本字段中输入的文本参数,因此我检查了核心插件,在这里我可以看到搜索文本的参数,例如
_dc: 11111111
page: 1
start: 0
limit: 20
sort: [{"property":"id","direction":"DESC"}]
filter: [{"property":"search","value":"new","operator":null,"expression":null}])
但就我而言,就像
_dc: 22222222
page: 1
start: 0
limit: 20
sort: [{"property":"id","direction":"DESC"}]
答案 0 :(得分:0)
您可能必须在remoteFilter: true
中定义EmployeeStore
:https://docs.sencha.com/extjs/4.1.3/#!/api/Ext.data.AbstractStore-cfg-remoteFilter