我是jQuery,Ajax,Web Api的新手。请找我演示通过Ajax调用将jQuery对象传递给Web api
提前谢谢。 Sunil Jadhav
答案 0 :(得分:2)
此处有更多信息:
$.ajax({
type: "POST",
url: '/Home/Index',
data: {id:1},
contentType: 'application/json',
success: function(data){
console.log(data);// return from webapi
},
dataType: 'json'
});