简体   繁体   中英

How to call python function from JS in odoo?

I have a boolean field in my model, I want to call python function when this boolean field change using JS? How can I achieved this?

Check some examples in the original source code. You can call python methods with call :

var def_session = new openerp.Model("im_chat.session").call("session_info", [], {"ids" : [session_id]}).then(function(session){
    conv = self.activate_session(session, false);
    conv.received_message(message);
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM