如何以 JSON 格式发送一个大的 HTML 块
我需要在 Json 对象中发送一大块 HTML,如下所示:
JsonResult jsn = Json(new Dictionary<string, object> { { "success", true },
{ "lastPID", posts[0].ID },
{ "content", "" } });
return jsn;
由于某种原因,当我将该 html 块放入内容变量中时,我收到此错误: 服务器无法在发送 HTTP 标头后设置内容类型。
如果我返回一些随机的非 html 内容,则不会发生这种情况。
在发送我的大块 html 之前,是否需要进行任何编码?
那么客户端呢?我如何取回数据。
I need to send a big block of HTML in a Json object like this:
JsonResult jsn = Json(new Dictionary<string, object> { { "success", true },
{ "lastPID", posts[0].ID },
{ "content", "" } });
return jsn;
For some reason I get this error when I put that html block into the content variable: Server cannot set content type after HTTP headers have been sent.
This doesn't happen if I return some random non-html content.
Is there any encoding that I need to do before I can send my big block of html?
What about the client end? How do I get back the data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来这是你的问题(和解决方案)
Looks like this is your problem (and solution)
如果您需要发送 HTML,为什么不只发送 HTML 而不是 JSON?
If you need to send HTML, why not just send HTML rather than JSON?