2

我正在尝试将变量传递给我的 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; }

}
4

3 回答 3

2

尝试为testea变量命名以确保操作方法将其分配给相同的命名参数,如下所示:

$.ajax({
    url: url,
    type: "post",
    data: { testea: testea },
    dataType: 'json',
    success: function (data) {
        alert(data.success);
    },
   error: function () {
       alert("error");
    }
});
于 2013-01-23T18:18:54.840 回答
0

由于目标方法的签名是字符串,请尝试将 123 作为字符串传递,例如。

var testea = JSON.stringify("123");
于 2013-01-23T18:14:16.530 回答
0

如果您要传递 JSON,请将其设置content-typeapplication/json.

$.ajax({
    type: 'POST',
    url: '@Url.Action("MostraTela", "Home")',
    data: { Id: 1, Name: 'Im a complex object' },
    success: function (data) {
        alert(data.success);
    },
    dataType: 'json',
    contentType: 'application/json, charset=utf-8',
});

控制器:

[HttpPost]
public JsonResult MostraTela(MyModel model, FormCollection collection)
{
    return Json(new { success = true });
}

班级:

public class MyModel
{
    public string Name { get; set; }
    public int Id { get; set; }
}
于 2013-01-23T18:26:03.857 回答