我有字符串和数组变量的集合,需要通过 ajax 发布操作传递控制器。例如:
string str="john";
int temp= 10;
var arrayObj=new Array();
$.ajax({
type: 'Post',
url: 'home/controller',
data: ?, // how to pass all string,int and array object
datatype: ?, //'html/ or Json' what will need to give?
success: function (result) {
},
});
有人可以回答我的问题吗?谢谢,巴拉蒂。