Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet

i want to get current url from javascript and i keep current url in session on controller and call the session in my model but i got nothing and no error:

controller.py:

@http.route(['/action_set_current_url/<string:url>'], type='json', auth="public")
def set_current_url(self, url, **post):
request.session['my_current_url'] = url
return {"my_current_url":my_current_url}

mymodel.py to get session:

current_url = http.request.session.get('my_current_url')

javascript code:

$(window).on('hashchange', function(e){
var url=window.location.href
    openerp.jsonRpc("/action_set_current_url/", 'call',url)
});
Avatar
Verwerfen

in the js, console the url and check whether there is value inside it

Autor

how to check the value inside when i'm working in remote server??

you can check the in console of the browser

Verknüpfte Beiträge Antworten Ansichten Aktivität
1
Juni 15
10596
0
Nov. 23
1896
1
Dez. 20
4950
3
Juli 19
15247
0
März 18
365