Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
7090 Представления

Hello, can you give me an example for getting a value from python to javascript?

I always get across browser origin error.

I tried to get a value from this:


.py

@http.route('/custom/test', type='json', auth="public", methods=['POST'], website=True)

    def person(self, lastname, firstname):

   

        headers = {'Content-Type': 'application/json'}

        create_user_url = "http://localhost:8090/custom_custom/user"

        data = {"jsonrpc": 2.0, "params": {"lastname": lastname, "firstname": firstname} } 

       

.js

if (result) {										    session.rpc('/custom/test', {											        lastname : // how to get the data from python?											        firstname: // how to get the data from python?											    }).then(function (result) {												        console.log("print user")
     });
}
Аватар
Отменить
Лучший ответ
Hi Kinah Guinto,

Try this way

Js:

this._rpc({

model: 'model.name',

method: 'get_person',

args: [],

}).done(function(data){

   // response block

});

Python:

@api.model

def get_person(self):

    # code stuff


It can be done by using RPC calls.

Аватар
Отменить
Автор

Hi Padhmanaban,

I am trying to get the function from controller.

Can you give me some examples for that?

I appreciate your response.

Thank you

Автор

Hi Padhmanaban,

Thank you for your response.

Related Posts Ответы Просмотры Активность
2
дек. 22
6191
0
дек. 24
1224
0
нояб. 24
1443
0
янв. 24
7189
0
мар. 21
2237