1

我在 odoo 8 中使用 web 控制器来制作一个 REST API,它将获取一些数据并从数据库返回值。问题是我无法从内置 ORM 中获取数据库。
我试图打电话osv.pool.get(),但给了我错误:

AttributeError: type object 'Model' has no attribute 'pool'

Odoo 8 显然使用记录集,但我也不能使用它,并且在文档上找不到任何有用的东西。

如何在 Web 控制器上浏览数据库数据?

我的代码:

class TestWebService(http.Controller):
    @http.route('/test', type='http', auth='none')
    def test(self):
       objects = osv.osv.pool.get("some_table")
       # I need to get the objects from some_table and search them
       return "Hello World"
4

1 回答 1

2

尝试关注

myobj = request.env['some.table']
于 2016-01-07T18:32:38.240 回答