gpt4 book ai didi

javascript - 当 JSON.stringify 时,Json 到 ASP.NET MVC Controller 参数为空

转载 作者:行者123 更新时间:2023-11-29 19:30:18 34 4
gpt4 key购买 nike

我试图通过向 MVC Controller 发送一个 JSON 对象作为参数来获取信息。

Controller 方法如下所示:

public ActionResult GetLatestInfoLogs(InfoLogUserJson invoker, InfoLogUserJson affected) {
// code
}

我有一个如下所示的服务器端模型:

public class InfoLogUserJson {
public int id { get;set; }
public int personId { get;set;}
public int customerId { get;set; }
public int rootUserId { get;set; }
public string ip { get;set; }
public bool unknown { get;set; }
}

我有一个如下所示的客户端脚本:

var InfoLogUser = function () {
this.id = ko.observable(0);
this.personId = ko.observable(0);
this.rootUserId = ko.observable(0);
this.customerId = ko.observable(0);
this.unknown = ko.observable(false);
this.ip = ko.observable(null);
}

InfoLogUser.prototype = (function() {
return {
toJSON: function() {
return {
personId: this.getPersonId(),
rootUserId: this.getRootUserId(),
customerId: this.getCustomerId(),
id: this.getId(),
unknown: this.getUnknown(),
ip: this.getIp()
}
}
}
}());

在 javascript View 模型中,我正在尝试这样做:

            var infoLogUser = new InfoLogUser();
infoLogUser.personId(1234);

$.ajax({
url: '/Whatever/GetLatestInfoLogs',
data: {
invoker: JSON.stringify(infoLogUser.toJSON()),
affected: null
},
dataType: 'application/json; charset: utf-8',
type: 'GET',
success: function(_infoLogs) {
alert('yay');
}
});

在我的网络日志中,我得到以下信息:查询字符串参数:

调用者:{"personId":1234,"rootUserId":0,"customerId":0,"id":0,"unknown":false,"ip":null}影响:

但是,当它命中 MVC Controller 中的 GetLatestInfoLogs 方法时,调用程序参数始终为 null。如果我从 ajax 请求中删除 JSON.stringify,则调用程序参数不为空,但其中未设置任何值。

我真的不知道发生了什么,所以希望你们中的任何人都知道发生了什么? :)

最佳答案

试试这个

$.ajax({
url: '/Whatever/GetLatestInfoLogs',
type: 'POST',
data: {
invoker: JSON.stringify(infoLogUser),
affected: null
},
contentType: 'application/json',

success: function(_infoLogs) {
alert('yay');
}
});

已更新

var data = {invoker: infoLogUser, affected: null};
$.ajax({
url: '/Whatever/GetLatestInfoLogs',
type: 'POST',
data: JSON.stringify(data),
contentType: 'application/json',

success: function(_infoLogs) {
alert('yay');
}
});

关于javascript - 当 JSON.stringify 时,Json 到 ASP.NET MVC Controller 参数为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28148516/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com