1.JSON数值 { “key” : value}

{
    "key" : 520,
    "key1" : 1314
}    

2.JSON字符串 { “key” : “value”}

{
    "key" : "我爱你",
    "key1" : "一生一世"
}

3.JSON数组 { “key” : [value]}

{
    "key" : [520, 1314],
    "key1" : [520, 3344]
}

4.JSON对象 { “key” : {value}}

json
适用于现代 C++ 的 JSON。
{
    "key" : {"520": "我爱你"},
    "key1" : {"1314": "一生一世"}
}

5.JSON对象数组 { “key” : [{“key1”: “value1”},{“key2”: “value2”}]}

{
    "我" : [
                  {"key": "我爱你"},
                  {"key1": "一生一世"}
    ]
}

6.JSON数组对象 {“key”:{“key1”:[value1,value2]}}

{
    "我" : {
                  [520,1314],
                  ["我爱你", "一生一世"]
    }
}

正确的json字符串的格式,前端报错消失:

res.write('{"ok":true,"msg":"注册成功"}')
推荐内容
GitHub 加速计划 / js / json
43
5
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:6 个月前 )
79587f89 Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.6.10 to 9.6.11. - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](https://github.com/squidfunk/mkdocs-material/compare/9.6.10...9.6.11) --- updated-dependencies: - dependency-name: mkdocs-material dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 14 小时前
b67f8644 Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.5.0 to 4.6.0. - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](https://github.com/actions/dependency-review-action/compare/3b139cfc5fae8b618d3eae3675e383bb1769c019...ce3cf9537a52e8119d91fd484ab5b8a807627bf8) --- updated-dependencies: - dependency-name: actions/dependency-review-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 14 小时前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐