假设已经定义了javascript对象。
var parent =
{
child1: {property1: "xx", property2: "xx", property3: "yy"},
child2: {property1: "xx", property2: "xx", property3: "yy"}
};
稍后,程序员想要动态地向child3
对象添加child4
和parent
等新属性。可以这样做,还是需要通过合并现有的parent
对象和新属性来创建新对象?
答案 0 :(得分:1)
感谢Rajesh的评论。这是答案。归功于Rajesh。
-1
答案 1 :(得分:1)
要澄清:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.+'
}
在这种情况下工作。致Rajesh的信用。