ExtJS Store 代理错误地使用 extraParams 中的数组构建 GET 请求
ExtJS Store proxy incorrectly build GET request with array in extraParams
我想将额外的过滤数据传递到我的 PHP REST 服务,即来自表单的一组值。表单是一组具有相同 name: 'relations'
.
的复选框
为此,我执行以下操作:
var relationTypes = [],
objectsTreeStore = Ext.getCmp('objectsTreeGrid').getStore();
if( 'relations' in this.getFilterForm().getValues() ) {
relationTypes = typeof this.getFilterForm().getValues().relations ==='string' ? [this.getFilterForm().getValues().relations] : this.getFilterForm().getValues().relations;
}
objectsTreeStore.getProxy().extraParams.relations = relationTypes;
objectsTreeStore.load();
例如,根据console.log
的relationTypes
变量的值是["100_200", "110_200"]
。
但是 GET 请求 URL 是 http://10.161.28.111:81/objectstree/get?branch_id=2&relations=100_200&relations=110_200&node=root
。
PHP 将此数据解释为
Array
(
[branch_id] => 2
[relations] => 110_200
[node] => root
)
我认为 URL 应该像 http://10.161.28.111:81/objectstree/get?branch_id=2&relations[]=100_200&relations[]=110_200&node=root
。
我该如何解决这个问题?
您是否尝试为您的复选框命名 name: 'relations[]'
?
您也可以使用 CheckboxGroup
容器来实现正确的行为。文档 — http://docs.sencha.com/extjs/4.2.2/#!/api/Ext.layout.container.CheckboxGroup
我想将额外的过滤数据传递到我的 PHP REST 服务,即来自表单的一组值。表单是一组具有相同 name: 'relations'
.
为此,我执行以下操作:
var relationTypes = [],
objectsTreeStore = Ext.getCmp('objectsTreeGrid').getStore();
if( 'relations' in this.getFilterForm().getValues() ) {
relationTypes = typeof this.getFilterForm().getValues().relations ==='string' ? [this.getFilterForm().getValues().relations] : this.getFilterForm().getValues().relations;
}
objectsTreeStore.getProxy().extraParams.relations = relationTypes;
objectsTreeStore.load();
例如,根据console.log
的relationTypes
变量的值是["100_200", "110_200"]
。
但是 GET 请求 URL 是 http://10.161.28.111:81/objectstree/get?branch_id=2&relations=100_200&relations=110_200&node=root
。
PHP 将此数据解释为
Array
(
[branch_id] => 2
[relations] => 110_200
[node] => root
)
我认为 URL 应该像 http://10.161.28.111:81/objectstree/get?branch_id=2&relations[]=100_200&relations[]=110_200&node=root
。
我该如何解决这个问题?
您是否尝试为您的复选框命名 name: 'relations[]'
?
您也可以使用 CheckboxGroup
容器来实现正确的行为。文档 — http://docs.sencha.com/extjs/4.2.2/#!/api/Ext.layout.container.CheckboxGroup