我有以下行动: [Route("GetNull")] [HttpGet] public IActionResult GetNull() { object value = new { Name = "John" }; return Ok(value); }它返回序列化的对象:HTTP/1.1 200 OKDate: Tue, 12 Jun 2018 06:13:05 GMTContent-Type: application/json; charset=utf-8Server: KestrelContent-Length: 22{ "name": "John"}如果对象像这样设置为 null: [Route("GetNull")] [HttpGet] public IActionResult GetNull() { object value = null; return Ok(value); }我希望返回 JSON 中的 null。但是,我得到这样的空内容:HTTP/1.1 204 No ContentDate: Tue, 12 Jun 2018 06:17:37 GMTServer: KestrelContent-Length: 0我确实让控制器将 null 序列化为 json 并返回:HTTP/1.1 200 OKDate: Tue, 12 Jun 2018 06:13:05 GMTContent-Type: application/json; charset=utf-8Server: KestrelContent-Length: 4null
2 回答
慕运维8079593
TA贡献1876条经验 获得超5个赞
如Microsoft 所述,您可以从控制器返回空 JsonResult。
例如,
return Json(null);
但是,更好的方法可能是返回 OK 状态,如果这就是您所需要的。
return Ok();
- 2 回答
- 0 关注
- 160 浏览
添加回答
举报
0/150
提交
取消