コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
2302 ビュー

I want to use web.rpc on my JS to manipulate display on pivot table, but it get error like unmet dependencies. I use like this 

var rpc = require('web.rpc');

but that get error on odoo 17, and I want to use that for rpc.query. Any alternative or solution with that approach ?

アバター
破棄
最善の回答

You can used to import the useService hook from the @web/core/utils/hooks package in Odoo's JavaScript framework.


// Example 


import { useService } from "@web/core/utils/hooks";


export const MyComponent = () => {

    setup() {

        super.setup();

        this.rpc = useService("rpc");

    }


    async onClickRPC() {

        await this.rpc("URL", {

            model: 'res.users',

            method: 'method_name',

            args: [],

            kwargs: {}

        })

    }

};





アバター
破棄
関連投稿 返信 ビュー 活動
0
8月 24
1195
1
5月 24
1482
2
3月 15
17352
1
3月 15
4655
0
8月 25
329