我正在尝试将变量传递给我的 JsonResult 但她得到 nul 所以这是我的 JsonResult 和 jQuery 中的代码
[HttpPost]
public JsonResult MostraTela(Teste testea)
{
return Json(new { success = true });
}
和 :
var testea = JSON.stringify(dado);
$.ajax({
url: '/Home/MostraTela',
type: 'POST',
dataType: 'json',
contentType: "application/json; charset=utf-8",
data: {testea: testea },
success: function (data) {
alert(data.success);
},
error: function () {
alert("error");
},
});
Agora eu fuitentar passar uma model e esta esta recebendo nulo novamente alguma ideia do que pode ser? 我加强数据:{testea:testea},错误,如果我加强数据:testea,我的 JsonResult 中的所有内容都为空
我的模型:
public class Teste
{
public int idteste { get; set; }
public string name { get; set; }
public int age { get; set; }
public string birthday { get; set; }
public string salary { get; set; }
}