javascript – 使用jQuery构建的查询字符串和重复键的AJAX调用

前端之家收集整理的这篇文章主要介绍了javascript – 使用jQuery构建的查询字符串和重复键的AJAX调用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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) {
        ...
    }
});

解决方法

在params对象中使用’facet.range’:[‘price’,’age’]并在ajax调用中将traditional设置为true,以强制执行参数的“传统”序列化,即foo = 1& foo = 2 of foo [] = 1& foo [] = 2.
原文链接:https://www.f2er.com/ajax/155673.html

猜你在找的Ajax相关文章