首页 > 解决方案 > 在搜索文本字段中输入的文本未传入参数

问题描述

先感谢您,

我有自己的自定义后端插件,其中有员工列表,我还放置了搜索字段来搜索员工,当我在搜索文本字段中输入时,它正在执行链接,如

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"}]

标签: pluginsshopware

解决方案



推荐阅读