我正在使用Extjs,GeoExt2,Openlayers等开发一个Web项目。
我使用GeoExt2中的FormPanel
通过过滤器发出wfs请求。
GeoExt Api Link
var formPanel = Ext.create('Ext.form.Panel', {
renderTo: "formpanel",
items: [{
xtype: "textfield",
name: "name__like",
value: "mont"
}, {
xtype: "textfield",
name: "elevation__ge",
value: "2000"
}]
});
我创建了一个像这样的过滤器" cond1 AND cond2 AND
.."在wfs中。我想对它们使用AND
和OR
定义。我该怎么办?