给定model
是一个json模型,它有很多从服务器返回的关键属性映射,比如{name:"hello"}
,
如何使用新属性键
attribute key: hello
attribute value: hello1
答案 0 :(得分:2)
因为它只是一个JavaScript对象文字,所以不能只说:
myJson['hello'] = 'hello1';
(假设myJson是你持有模型的变量。)
在JSON.stringify()
上致电myJson
应该会产生:
{
'name': 'hello',
'hello': 'hello1'
}