如何在 Java 脚本文本框中显示 JSON 中的转义序列

发布于 2024-10-29 02:37:35 字数 429 浏览 1 评论 0原文

我使用 AJAX 将 JSON 对象从 servlet 发送到 JSP。我的 JSON 对象内部包含一个 String 值。并且该字符串中包含双引号。我的 JSON 无法解析它。我收到以下错误:

 {"diagnosis":[{"NAME":"new_diagnosis_1 \[1020\]:2000000006001"},{"NAME":"new_diagnosis_2 \[1021\]:2000000006003"},{"NAME":"new_"dise"sed \[1023\]:2000000009001"},{"NAME":"new_d"ise"sef \[1024\]:2000000009003"}]}

注意 new_"dise"sednew_d"ise"sef

我需要一个解决方案。

I am sending a JSON object from a servlet to JSP using AJAX. My JSON object contains a String value inside. and that string contains double quotes within that. My JSON does not parse it. I get the following error:

 {"diagnosis":[{"NAME":"new_diagnosis_1 \[1020\]:2000000006001"},{"NAME":"new_diagnosis_2 \[1021\]:2000000006003"},{"NAME":"new_"dise"sed \[1023\]:2000000009001"},{"NAME":"new_d"ise"sef \[1024\]:2000000009003"}]}

note new_"dise"sed and new_d"ise"sef

I need a solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

沉默的熊 2024-11-05 02:37:35

您的 json 无效

尝试

{
    "diagnosis": [
        {
            "NAME": "new_diagnosis_1 [1020]:2000000006001" 
        },
        {
            "NAME": "new_diagnosis_2 [1021]:2000000006003" 
        },
        {
            "NAME": "new_\"dise\"sed [1023]:2000000009001" 
        },
        {
            "NAME": "new_d\"ise\"sef [1024]:2000000009003" 
        } 
    ]
}

使用 \ 转义引号,

您可以在此处验证您的 json
http://www.jsonlint.com/

your json is not valid

try this

{
    "diagnosis": [
        {
            "NAME": "new_diagnosis_1 [1020]:2000000006001" 
        },
        {
            "NAME": "new_diagnosis_2 [1021]:2000000006003" 
        },
        {
            "NAME": "new_\"dise\"sed [1023]:2000000009001" 
        },
        {
            "NAME": "new_d\"ise\"sef [1024]:2000000009003" 
        } 
    ]
}

use \ to escape quotes

you can validate your json here
http://www.jsonlint.com/

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