콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
4314 화면

How to connect odoo database with flutter?

아바타
취소
베스트 답변

For RPC calls to an Odoo database in Flutter I suggest to look at the Odoo RPC Client Library (https://pub.dev/packages/odoo_rpc). Personally I have good experience with this library. Using this library, a simple RPC call would look something like this:

var res = await client.callKw({
​'model': 'res.users',
​'method': 'search_read',
​'args': [],
​'kwargs': {
​'context': {'bin_size': true},
​'domain': [],
​'fields': ['id', 'name', 'email'],
​'limit': 80,
​},
});

I hope this helps!

아바타
취소
베스트 답변

rpc


아바타
취소