這是我的jQuery代碼 ,接下來是我的json函數來處理這個名爲InsertMatlabJson
的jQuery代碼。如何將HTML內容發送到ASP.NET MVC JSON函數?
問題是沒有文本進入到.NET json函數中。 。 。
function insert() {
var url = '<%=Url.Content("~/") %>' + "Matlab/InsertMatlabJson";
var text = document.getElementById('MainContent_FreeTextBox1').value
$.ajax({
url: url,
type: 'GET',
data: { text: text},
contentType: 'application/json; charset=utf-8',
success: function (response) {
//your success code
alert("opk");
},
error: function() {
//your error code
alert("no");
}
});
}
public JsonResult InsertMatlabJson(string text)
{
}
你想通過發送HTML查詢並在函數上接收它作爲文本變量? –
是你的問題,在ASP.NET MVC中,你沒有收到任何文本參數? – BadFeelingAboutThis
嘗試更改:類型:'GET'鍵入:'POST' –