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.
以下が有効なjsonではないのはなぜだろうか
{ test : event}
しかし
{ "test" : "event" }
有効なものですか?
JSONでは、フィールドは引用符で宣言され(したがって、では"test"なくtest)、フィールドに格納できるデータ型は、数値、文字列、ブール値、配列、オブジェクト(つまり、別のJSONオブジェクト)、またはnullのみです。eventはそれらのいずれでもありません"event"が、有効な値型である文字列です。これらはJSONのルールにすぎません。
"test"
test
event
"event"
JSONを読む必要があります。