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

Hello,

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

アバター
破棄
最善の回答

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()


アバター
破棄
著作者

Thank You Mohammed

関連投稿 返信 ビュー 活動
7
9月 21
28276
3
9月 22
30634
2
12月 24
2102
1
2月 22
3922
1
2月 22
6798