Skip to content

Odoo Controllers Website

Odoo Controllers Website

Controllers/*.python 访问 odoo网址/test

python
# -*- coding: utf-8 -*-
from odoo import http
import json


class HttpTest(http.Controller):

    @http.route('/test/', type='http', auth='public', website=True)
    def index(self, **kw):
        test = kw
        return json.dumps({'test': test})

最后更新于: