有没有办法在Odoo的自定义模块中的某个网址上监听POST?
或者这是否必须使用nginx将请求重定向到另一个python脚本?
答案 0 :(得分:1)
当然可以
from openerp import http
@http.route('/home', auth="public", website=True)
def cart(self, **kwargs):
return 'This is the index page'
非常简单,我们定义一个指向/home
的url路由,然后是一个向用户返回字符串的python方法。
安装您的模块并访问localhost:8069/home
,您应该会看到'This is the index page'
返回给您
有关详细信息,请阅读docs