Odoo Controllers Website

2019/9/9 odoo

# Odoo Controllers Website

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

# -*- 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})