2017-06-19 70 views
0

我需要通過按按鈕來重定向用戶。 按鈕的代碼是這樣的:ODoo使用JSON重定向

from odoo.http import request 
... 
@api.one 
def go_away(self): 
    return request.redirect('http://example.com/api.jsp?user=1&id=12') 

Odoo引發錯誤:

AttributeError: 'JsonRequest' object has no attribute 'redirect' 

當我試試這個:

werkzeug.utils.redirect(url) 

Odoo說:

AttributeError: 'function' object has no attribute 'routing_type' 

我能理解怎麼了,怎麼可能我用鏈接中的JSON數據重定向用戶。

回答

0

我發現我可以這樣重定向:

@api.multi 
    def go_away(self) 
    return { 
     'type': 'ir.actions.act_url', 
     'url': url, 
     'target': 'self', 
    }