如何以 JSON 格式发送一个大的 HTML 块

发布于 2024-08-16 18:12:54 字数 428 浏览 3 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北城孤痞 2024-08-23 18:12:54

看起来是你的问题(和解决方案)

Looks like this is your problem (and solution)

柒夜笙歌凉 2024-08-23 18:12:54

如果您需要发送 HTML,为什么不发送 HTML 而不是 JSON?

If you need to send HTML, why not just send HTML rather than JSON?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文