gpt4 book ai didi

javascript - 序列化数组以查询字符串参数

转载 作者:行者123 更新时间:2023-12-03 08:00:01 25 4
gpt4 key购买 nike

目前我做了一些代码重构,并尝试通过串联 json 对象的序列化来替换查询字符串的生成

来自:

$.ajax({
url:'./services/DataService/getDetails?metric=9&'+dashBoards.getFilter()+'groupby=quarter&'+dashBoards.options.time.start1+'&'+dashBoards.options.time.end1+'&peergroup='+dashBoards.options.peerGroup,
type:"GET",

致:

$.ajax({
url:'./services/DataService/getDetails',
data: jsonObject,
type:"GET",

几乎一切都工作正常,除了一件事。如果jsonObject包含数组字段,它在查询字符串中看起来像这样:

...?metric[]=1&metric[]=3

而不是

...?metric=1&metric=3

有什么办法可以解决吗?谢谢!

最佳答案

您可以通过添加到 $.ajax 参数 traditional: true 来修复它。

Here you can find reference why

关于javascript - 序列化数组以查询字符串参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34628562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com