JSON 语法:传输数组
有效 JSON 语法是这样的:
{
"username": "admin",
"password": "123"
}
但是,如果我想传输一组“用户”(给出示例),而不是单个“用户”,该怎么办?
根据规范,下面的代码是有效的 JSON 吗?
[{
"username": "admin",
"password": "123"
}, {
"username": "bbvb",
"password": "sdfsdf"
}, {
"username": "asd",
"password": "222"
}]
如果没有,使用 JSON 传输值数组的最佳方法是什么? (“最佳方式”,我的意思是语法上)
A valid JSON Syntax is something of the kind:
{
"username": "admin",
"password": "123"
}
But what if I want to transmit an array of 'users' (given the example), instead of a single 'user' ?
Is the code below Valid JSON, according to the specifications?
[{
"username": "admin",
"password": "123"
}, {
"username": "bbvb",
"password": "sdfsdf"
}, {
"username": "asd",
"password": "222"
}]
And if not, what is the best way to transmit an array of values across with JSON? (And with 'best way', I mean syntactically)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的,您的示例是有效的 JSON - 这正是您想要使用数组的方式。
编辑:这里有一个关于 JSON 及其用法的很好的链接。
Yes, your example is valid JSON - that is exactly how you want to use an array.
Edit : Here is a good link on JSON and its usage.
不太知名的页面 json.org 有一个显示语法的图表。 恕我直言,这非常容易理解。
The not-very-well-known page json.org has a diagram that shows the syntax. It’s extremely simple to understand, IMHO.
Json 语法包括以下内容。
Json 对象示例
Json 数组示例
我参考了 http://www.tutsway.com/json-syntax.php
Json Syntax Includes following.
Json Objects Example
Json Array Example
I have taken reference from http://www.tutsway.com/json-syntax.php
你在那里写的已经是正确的:)
What you wrote up there is already correct :)