gpt4 book ai didi

client - openerp 网络客户端 6.1 : how to override base javascript functions

转载 作者:行者123 更新时间:2023-12-04 20:19:03 25 4
gpt4 key购买 nike

我正在寻找一种方法来覆盖一些 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 已加载,因为在此定义之外放置警报有效。

这里有什么问题?

最佳答案

这是一个特殊的问题,因为您想更改已经实例化的对象的原型(prototype)(类,如果您愿意的话)(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 绑定(bind)到您要替换的方法,如果有的话,用于就地类更改)

如果您检查 view_list_editable.js 实现文件,它会提供示例,因为它需要重新打开并更改 ListView 的代码以添加可编辑性。

关于client - openerp 网络客户端 6.1 : how to override base javascript functions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8817467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com