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.
与えられ modelたのは、サーバーから返される多くのキー属性マッピングを持つjsonモデルです。たとえば{name:"hello"}、新しい属性キーでそれを拡張するにはどうすればよいですか
model
{name:"hello"}
attribute key: hello attribute value: hello1
?
これは単なる JavaScript オブジェクト リテラルなので、次のように言うことはできません。
myJson['hello'] = 'hello1';
( myJson がモデルを保持する変数であると仮定します。)
を呼び出すJSON.stringify()と、次の結果myJsonが得られます。
JSON.stringify()
myJson
{ 'name': 'hello', 'hello': 'hello1' }