Skip to Content
Menú
This question has been flagged
1 Respondre
2097 Vistes

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 ?

Avatar
Descartar
Best Answer

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: {}

        })

    }

};





Avatar
Descartar
Related Posts Respostes Vistes Activitat
0
d’ag. 24
1066
1
de maig 24
1340
2
de març 15
17152
1
de març 15
4467
2
de jul. 25
1295