Extjs4如何使用Ext应用对象内部的对象

时间:2012-09-08 10:17:36

标签: extjs4

我在Extjs4中使用Ext.apply(obj1,configobject); 让我们考虑一下这个示例:

               var obj1 = {},
   configobject = {
    a: 'value',
    d: 'somevalue',
    c: {
        c1 : 10,
        c2 : 5,
        c3 : 4
    }
};
        Ext.apply(obj1, configobject);
         obj1.c={c2 : 25}
          document.write(obj1.c.c1 + ', ' + obj1.c.c2 + ', ' + obj1.c.c3);
                                    Now the value of obj.c.c1 and obj.c.c3 will show undefined, can anyone tell me the reason

谢谢

1 个答案:

答案 0 :(得分:1)

Ext.apply应该正常工作。以下是工作示例http://jsfiddle.net/mWaZJ/