设置httpresponse的内容主体?
http://msdn.microsoft.com/en-us/library /system.web.httpresponse.aspx
如何设置body中的内容?
HTTP/1.1 400 Bad Request
Content-Type: application/json;charset=UTF-8
Cache-Control: no-store
Pragma: no-cache
{
"message":"response content example"
}
http://msdn.microsoft.com/en-us/library/system.web.httpresponse.aspx
How do I set the content in the body?
HTTP/1.1 400 Bad Request
Content-Type: application/json;charset=UTF-8
Cache-Control: no-store
Pragma: no-cache
{
"message":"response content example"
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
Output
和OutputStream
属性,或Write
方法。Use the
Output
andOutputStream
properties, or theWrite
method.在 AspNetCore 中:
await context.Response.WriteJsonAsync("\"{\"message\":\"response content example\"}\"");
或者使用动态对象:
await context.Response.WriteJsonAsync(new { message = "响应内容示例" });
In AspNetCore:
await context.Response.WriteJsonAsync("\"{\"message\":\"response content example\"}\"");
Or using a dynamic object:
await context.Response.WriteJsonAsync(new { message = "response content example" });