gpt4 book ai didi

c# - 通过 Json 发送 HTML

转载 作者:行者123 更新时间:2023-12-03 03:08:12 25 4
gpt4 key购买 nike

我正在响应 Jquery Ajax 调用,它运行良好:

var jSonTestResultReport =@"{ ""html"" : ""I am text!"" }";

Javascript 接收它并获取文本并将其呈现在 Div 中,我可以看到它说“我是文本”

但是当我尝试这样做时:

var jSonTestResultReport =@"{ ""html"" : ""<li style=""color:green;"">I am text</li>"" }";

我得到的错误是

unexpected token c.

如何通过Json发送html

最佳答案

var jSonTestResultReport =@"{ ""html"" : ""<li style=""color:green;"">I am text</li>"" }";

将创建一个 json 字符串为

{ "html" : "<li style="color:green;">I am text</li>" }

这是无效的。 意外的标记 c. 来自 color 的第一个字母。

使用 real json parser而不是手动形成 json。

var json = JsonConvert.SerializeObject(new { html=@"<li style=""color:green;"">I am text</li>" });

PS:var jSonTestResultReport =@"{ ""html"": "I am text!"}"; 不可编译。

关于c# - 通过 Json 发送 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12638954/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com