Skip to content


JSONLint – JSON数据格式验证器

JSONLint - JSON数据格式验证器

JSONLint,一个轻量级的在线JSON数据格式验证工具,用于验证JSON格式是否有错。

JSON (JavaScript Object Notation)一种简单的数据格式,比xml更轻巧。 JSON 是 JavaScript原生格式,这意味着在 JavaScript 中处理 JSON 数据不需要任何特殊的 API 或工具包。 JSON的规则很简单:对象是一个无序的“‘名称/值’对”集合。一个对象以“{”(左括号)开始,“}”(右括号)结束。每个“名称”后跟一个“:”(冒号);“‘名称/值’对”之间使用“,”(逗号)分隔。

常见的JSON格式如下

{
“bindings”: [
{
“ircEvent”: “PRIVMSG”,
“method”: “newURI”,
“regex”: “^http://.*”
},
{
“ircEvent”: “PRIVMSG”,
“method”: “deleteURI”,
“regex”: “^delete.*”
},
{
“ircEvent”: “PRIVMSG”,
“method”: “randomURI”,
“regex”: “^random.*”
}
]
}

{    “bindings”: [        {            "ircEvent": "PRIVMSG",            "method": "newURI",            "regex": "^http://.*"         },        {            "ircEvent": "PRIVMSG",            "method": "deleteURI",            "regex": "^delete.*"         },        {            "ircEvent": "PRIVMSG",            "method": "randomURI",            "regex": "^random.*"         }     ]}

文章分类: 开发工具.

文章标签: , , , .


一条评论

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.

  1. timepast says

    灰常好用,赞下!



Some HTML is OK

or, reply to this post via trackback.