admin管理员组文章数量:1344541
I create one get request with axios:
this.$axios.get('/cidade/',{
params: {
q: result,
}
})
.then((response) => {
this.cidades = response.data;
})
.catch(function (error) {
// handle error
// eslint-disable-next-line
console.log(error);
})
.then(function () {
// always executed
});
but my result is an array [123asdas1,asdasd2312] and when the axios excute the request he create that url:
http://localhost:8081/cidade/?q[]=5b9cfd0170607a2e968b0a1e&q[]=5b9cfd0170607a2e968b0a1d
so It's possible to remove the [] from q param? how?
tks
I create one get request with axios:
this.$axios.get('/cidade/',{
params: {
q: result,
}
})
.then((response) => {
this.cidades = response.data;
})
.catch(function (error) {
// handle error
// eslint-disable-next-line
console.log(error);
})
.then(function () {
// always executed
});
but my result is an array [123asdas1,asdasd2312] and when the axios excute the request he create that url:
http://localhost:8081/cidade/?q[]=5b9cfd0170607a2e968b0a1e&q[]=5b9cfd0170607a2e968b0a1d
so It's possible to remove the [] from q param? how?
tks
Share Improve this question asked Sep 16, 2018 at 22:05 Fabio EbnerFabio Ebner 2,79316 gold badges58 silver badges83 bronze badges 2-
The way it’s doing it is the proper way to send a parameter array in a url. Your server should parse that to a single
q
param whose value is an array of ["5b9cfd0170607a2e968b0a1e", "5b9cfd010607a2e968b0a1d"]. Is your server not parsing the param that way? Because it should be. If not, then you should try to figure out why that is. – Nate Commented Sep 16, 2018 at 22:11 - Does this answer your question? Multiple fields with same key in query params (axios request)? – andruso Commented May 5, 2020 at 18:12
1 Answer
Reset to default 7When posing a query string where one field has multiple values (i.e. if it were an array), then there is no standard that says how it must be encoded in the query string, however most web servers accept this syntax:
http://localhost:8081/cidade/?q[]=value1&q[]=value2
which is why axios defaults to it. Check your web server to see if it is reading the parameter as an array correctly.
If you want to force it to be encoded in some other way, just convert the array to a string in whatever format you want and send it as a single value:
this.$axios.get('/cidade/', {
params: {
q: JSON.stringify(result)
}
})
http://localhost:8081/cidade/?q=[value1,value2]
(The [
and ]
characters may be percent-encoded.)
In general, this syntax cannot distinguish between the string "[value1,value2]"
and the array [value1, value2]
, so the web server will have to choose one or the other. Again, this is all dependent on your web server.
本文标签: javascriptAxios get with param arrayStack Overflow
版权声明:本文标题:javascript - Axios get with param array - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743799527a2541049.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论