odoo controllery.py から JSON 形式のデータを取得したい
例:
import openerp.http as http
from openerp.http import request
class MyController(http.Controller):
@http.route('/test_html', type="http", auth="public")
def some_html(self):
return "<h1>Test</h1>"
#Work fine when open http://localhost:8069/test.html
@http.route('/test_json', type="json", website=True, auth="public")
def some_json(self):
return [{"name": "Odoo", 'website': 'www.123.com'}]
json形式でデータを取得する方法 jsonのデータをajaxで他のアプリに読み込みたい。
URL http://localhost:8069/test_jsonを開いた後にjsonを表示することは可能ですか???