我想从 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 格式的数据,我希望使用 ajax 在其他应用程序中读取来自 json 的数据。
打开 url http://localhost:8069/test_json后是否可以查看 json ???