Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
发送值 ie 54,是否被视为有效的 JSON 响应'foobar',true还是我必须将它们包装到对象中,即 ie{ result: 54 }等{ result: 'foobar' }?
54
'foobar'
true
{ result: 54 }
{ result: 'foobar' }
{} 是必需的,并且必须包含至少一个名称-值对。有关 JSON 语法,请参见http://www.json.org/。