Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
6644 Vistas

Hello,

     I need to know that how to call function through URL?

Avatar
Descartar
Mejor respuesta

You can call a funtion from url using http.route

for example call a function from url www.domain.com/web/my/home

@http.route(['/my/home'], type='http', auth="public", website=True)
def your_function(self, **kw):
     # your code

or if you want to call a function defined inside a model use this inside your function

request.env['your.model'].function_name()


Avatar
Descartar
Autor

Thank You Mohammed

Publicaciones relacionadas Respuestas Vistas Actividad
7
sept 21
28287
3
sept 22
30675
2
dic 24
2115
1
feb 22
3930
1
feb 22
6817