Hello everybody;
I have a python function that i need to call from a js file.
But need your help to know how it works with jqwery.
Thanks a lot in advance.
Best regards.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello everybody;
I have a python function that i need to call from a js file.
But need your help to know how it works with jqwery.
Thanks a lot in advance.
Best regards.
Yes, you can do it using controller in javascript.
Make an rpc call as below inside controller:
self._rpc({
model: <your_model_name>,
method: '<your_method_name>',
args: [data[key]],
context: session.user_context,
}).done(function() {}).fail(function() {})
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
2
9月 24
|
14377 | ||
|
0
4月 18
|
2464 | ||
|
1
7月 19
|
6423 | ||
|
2
7月 24
|
2426 | ||
|
1
6月 24
|
4946 |
Do you mean to call a controller function from the JS file?