gpt4 book ai didi

jquery - 使用ajax将数组传递给webmethod

转载 作者:行者123 更新时间:2023-12-01 05:09:18 25 4
gpt4 key购买 nike

如何使用以下代码将数组传递给 webmethod:

$.ajax({
type: "POST",
url: "somepage.aspx/somemethod",
contentType: "application/json; charset=utf-8",
dataType: "json"
});

最佳答案

只是数组...

$.ajax({
type: "POST",
url: "somepage.aspx/somemethod",
data: "a[1]=1&a[2]=2&a[3]=3",
contentType: "application/json; charset=utf-8",
dataType: "json"
});

你也可以在物体上做...

var myObject = {
a: {
one: 1,
two: 2,
three: 3
},
b: [1,2,3]
};
$.ajax({
type: "POST",
url: "somepage.aspx/somemethod",
data: decodeURIComponent($.param(myObject)), // a[one]=1&a[two]=2&a[three]=3&b[]=1&b[]=2&b[]=3
contentType: "application/json; charset=utf-8",
dataType: "json"
});

您可以查看$.ajax()的更多选项,其中包括数据

关于jquery - 使用ajax将数组传递给webmethod,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3191317/

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