Apache Solr 要求发送到其端点的 GET 参数之一是重复的名称:
facet.range=price&facet.range=age
此处的文档:
http://wiki.apache.org/solr/SimpleFacetParameters#facet.range
在 jQuery 中,我怎样才能包含该查询字符串参数 ( facet.range
) 两次?我无法使用重复键创建对象,但这与我需要做的事情一致:
context = {
'facet.range': 'price',
'facet.range': 'age', // This will be the only element in this dictionary as the key names are the same
}
$.ajax({
type: "get",
url: 'http://127.0.0.1:8983/solr/select',
dataType:"jsonp",
contentTypeString: 'application/json',
jsonp:"json.wrf",
data: context,
success:function (data) {
...
}
});