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.
我在使用 ExtJs MVC 时遇到以下错误,
未捕获的类型错误:无法调用未定义的方法“删除”
我跟踪了上述错误,该错误转到我将值从模型绑定到视图的行,
Ext.getCmp('myForm').loadRecord(myModel);
我的一些表单字段被禁用,我仍在绑定它们。这是问题吗?
每当我的模型包含不规则数据时(尤其是在尝试将此不可用数据绑定到对偶列表时),就会发生错误。假设我的双重列表包含 (A,B,C) 之类的项目值,当我尝试绑定 D 时,就会发生此错误。