查询参数中具有相同键的多个字段(axios 请求)?

Multiple fields with same key in query params (axios request)?

所以后端(不在我的控制之下)需要这样的查询字符串:

http://example.com/?foo=5&foo=2&foo=11

但是axios使用JS对象发送请求参数:

axios.get('http://example.com/', { foo: 5 });

而且显然这样的对象不能有多个具有相同键的字段。

如何发送具有多个字段且具有相同密钥的请求?

Disclaimer: I have never used Axios and couldn't find any reference in the documentation. It is still worth a try. Personally, I would implement it this way in a library.

也可以将数组作为参数的值传递:

axios.get('http://example.com/', { foo: [1, 2, 3, 4, 5] });

From the axios documentation on the request config

// `params` are the URL parameters to be sent with the request
// Must be a plain object or a URLSearchParams object
params: {
  ID: 12345
},

要在请求中使用它,您可以这样做

var request = {
  params: {
    foo: [5, 2, 11]
  }
}
axios.get('http://example.com/', request);

使用普通对象方法的唯一问题是数组参数添加为

http://example.com/?foo[]=5&foo[]=2&foo[]=11

要获得没有 [] 的请求,您可以使用 URLSearchParams

var params = new URLSearchParams();
params.append("foo", 5);
params.append("foo", 2);
params.append("foo", 11);
var request = {
  params: params
};
axios.get('http://example.com/', request);

这将导致请求为

http://example.com/?foo=5&foo=2&foo=11

在 Axios 请求配置中,您可以覆盖参数序列化,然后使用 QS NPM 模块repeat 模式[=11] 序列化数组=]

let params = { foo: [5, 2] }

axios.get('path/to/api/',{params}) // URL : https://path/to/api?foo[]=5&foo[]=2

let myAxios = axios.create({
    paramsSerializer: params => Qs.stringify(params, {arrayFormat: 'repeat'})
})
myAxios.get('path/to/api/',{params}) // URL : https://path/to/api?foo=5&foo=2

如果使用现成的 URLSearchParams 处理多个具有相同名称的参数值也适用于 axios ...我猜对 IE 的支持是在 2017 年出现的...也适用于 Safari,尽管链接声称它可能不会..

function getUrlParams(){
        // handles multiple param values with the same name
        var url_params = new URLSearchParams(); 

        if( window.location.toString().indexOf("?") != -1) {
           window.location.search.split('?')[1].split('#')[0]
              .replace(/([^=&]+)=([^&]*)/g, function(m, key, value) {
              var attr = decodeURIComponent(key)
              var val = decodeURIComponent(value)
              url_params.append(attr,val);
           });
        } else {
           // create a default set of params - you might not need this one ...
           url_params = { some_param:"some_value" };
        }
        return url_params ;
     }


     function getBackEndData(url_params, back_end_url){
           // the replace is just a fancy way of converting front-end to back-end call
           return axios.get( back_end_url , { params: url_params } )
           .then(response => {
              return response.data ;
           })
           .catch(function(error) {
              return error.response ; 
              console.log(error.response.data);
           })
     }

向@nhydock 接受的答案添加更多详细信息。 当你做

var request = {foo: [5, 2, 11] }

axios.get('http://example.com/', 请求);

对于 django 应用程序,您可以收到这些

self.request.query_params.getlist('foo')

还有。

以下工作正常:

axios.get(`'http://example.com/${foo1}&${foo2}`);