我正在寻找一种方法来覆盖一些openerp web js核心功能,例如“on_logout”。
文档缺少说明(正如您在my post中看到的那样),helloworld module告诉您可以像
那样执行此操作openerp.web_hello = function(openerp) {
openerp.web.SearchView = openerp.web.SearchView.extend({
init:function() {
this._super.apply(this,arguments);
this.on_search.add(function(){console.log('hello');});
}
});
// here you may tweak globals object, if any, and play with on_* or do_* callbacks on them
openerp.web.Login = openerp.web.Login.extend({
start: function() {
console.log('Hello there');
this._super.apply(this,arguments);
}
});
};
在我的模块中,我正在这样做:
openerp.mytest = function(openerp){
openerp.web.WebClient = openerp.web.WebClient.extend({
on_logout: function() {
alert('mine');
[...]
},
});
}
我知道js已加载,因为在此定义之外放置警报会起作用。
这里有什么问题?
答案 0 :(得分:4)
这是一个特殊的问题,因为你想要改变已经实例化的对象的原型(类,如果你愿意)(WebClient实例是系统的根,所以它可能已经在那里了加载代码的时间,因此创建新的WebClient“类”不会改变现有实例。
在这种情况下,你不能用子类替换类,你必须重新打开类(以类似于Ruby的方式),因为在类对象上有一个include
方法,哪个应该工作:
openerp.mytest = function(openerp) {
openerp.web.WebClient.include({
on_logout: function() {
alert('mine');
this._super.apply(this, arguments);
}
});
}
(如在Ruby中,this._super
绑定到您要替换的方法(如果有),用于就地类更改)
如果检查view_list_editable.js实现文件,它会提供相关示例,因为它需要重新打开并更改listview的代码才能添加可编辑性。