如何在Odoo JSON控制器中发送简单消息和状态作为响应?

时间:2016-10-04 09:38:47

标签: json controller response odoo-8 odoo

我尝试了不同的方法,但它们没有用。

首先我尝试过这种方式:

import openerp.http as http
from openerp.http import Response

class ResPartnerController(http.Controller):

    @http.route('/odoo/create_partner', type='json', auth='none')
    def index(self, **kwargs):

    Response.status = '400'
    return "Result message"

我在客户端获得正确的状态和消息。但是如果我在Odoo界面上做任何动作,我会收到这个奇怪的警告

enter image description here

有没有办法避免这条消息?

我也尝试了这两种方式:

data = {'result': 'RESULT message'}
json_data = json.dumps(data, encoding='utf-8')
headers = [('Content-Type', '{}; charset=utf-8'.format('application/json'))]
mimetype = 'application/json'
res = Response(
    response=json_data,
    status=status,
    headers=headers,
    mimetype=mimetype,
)
return res
msg = u'Response 200 badly built, falling back to a simple 200 OK response'
res = Response(msg, status=200)
return res

但我总是把这个错误作为客户的答案:

TypeError: <Response 9 bytes [400 BAD REQUEST]> is not JSON serializable\n", "message": "<Response 9 bytes [400 BAD REQUEST]> is not JSON serializable"

那么,是否有一种简洁的方式来回复带有响应状态的简单消息?

对我来说,发送响应的状态也很重要

如果我只是回复一条消息,一切正常,但如何在没有奇怪行为的情况下改变状态?

顺便说一句,我使用这个脚本来进行调用

# -*- coding: utf-8 -*-

import requests
import json

url = 'http://localhost:8069/odoo/create_partner'
headers = {'Content-Type': 'application/json'}

data_res_partner = {
    'params': {
        'name': 'Example',
        'email': 'jamon@test.com',
    }
}

data_json = json.dumps(data_res_partner)
response = requests.post(url=url, data=data_json, headers=headers)
print(response.status_code)
print(response.content)

更新

最后@Phillip Stack告诉我用XML-RPC做这个,所以我写了这个other question以澄清我的怀疑。

1 个答案:

答案 0 :(得分:1)

试试这个,我不确定我是否理解这里涉及的所有复杂性。尝试一个vanilla请求并将响应解析为json作为解决方法。如果我弄清楚json请求/响应,我会更新它。我遇到了与你自己类似的问题,但能够让以下工作。

尝试使用类型http

 @http.route('/test/test', auth='none', type='http')
 def test(self, **kwargs):
     return Response("TEST",content_type='text/html;charset=utf-8',status=500)

我的请求看起来像这样。

r = requests.post("http://localhost:8069/test/test",data={}))    
>>> r
<Response [500]>
>>> r.text
u'TEST'

尝试使用类型json

@http.route('/test/test', auth='none', type='json')
def test(self, **kwargs):
    Response.status = '400'
    return {'test':True}

使用像这样结构化的请求。

json_data = {"test": True}

requests.post("http://localhost:8069/test/test",data=json.dumps(json_data),headers={"Content-Type":"application/json"})

使用上面的python请求。

将以下示例用于javascript

var json_data = { 'test': true };

$.ajax({ 
        type: "POST", 
        url: "/test/test", 
        async: false, 
        data: JSON.stringify(json_data), 
        contentType: "application/json", 
        complete: function (data) { 
            console.log(data);  
        } 
});