我得到了这个 JSON 字符串,它有什么问题?我可以通过几个在线 JSON 测试器运行它,他们都说 OK。但是,当它通过实体框架发布到我的 c# web api 时,我的帖子正文为空。有任何想法吗?这是 POST 函数:
public void Post([FromBody]List<AIM.RunningProcess> list_runningprocesses)
{
if (list_runningprocesses == null) return;
这是 JSON 字符串:
[
{
"PSComputerName": "eetpcx31v.admin.eetp.local",
"ProcessName": "AcroRd32.exe",
"ProcessID": 14240,
"CommandLine": ".C:\\Program Files (x86)\\Adobe\\Reader 10.0\\Reader\\AcroRd32.exe. .C:\\Users\\jmetzler\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.Outlook\\VG2QRLL8\\Pöyry_RevealingFlexibilityValueStudy_Proposal_v2_0.pdf.",
"CreationDate": "Oct 24 2013 14:21:09",
"Username": "jmetzler",
"RemoteIP": null
}
]
显然,由于 CommandLine 属性而失败。“命令行”的数据库列属性是 varchar(8000)。这是“RunningProcess”类。
public partial class RunningProcess
{
public string PSComputerName { get; set; }
public string ProcessName { get; set; }
public string ProcessID { get; set; }
public string CommandLine { get; set; }
public Nullable<System.DateTime> CreationDate { get; set; }
public string Username { get; set; }
public string RemoteIP { get; set; }
}
有人知道吗?