콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
6940 화면

Hi,

     Plz anyone can give me the clear idea regarding URL and routing in building website, I got really confused........

 

아바타
취소
베스트 답변

Hello Umashankar 

Below is some information for website routing in odoo

Example :

website_sale/templates.xml line 643 

<template id="cart" name="Shopping Cart">

So, this is the template id and the page will be localhost/shop/cart

Now, when you redirect to this page it will trigger the method of that page :

website_sale/controller.main.py line 295

@http.route(['/shop/cart'], type='http', auth="public", website=True)
    def cart(self, **post):

By the http.route you can route trigger the method of some perticuler page.

Hope that this answer will help you.

Please don't hesitate to ask any question regarding this.

If you get the answer as you need then please accept the answer.

Thank You

 

 

 

 

아바타
취소
작성자

Thanks for the reply Kazim Mirza, but still i have doubts in some concepts, you have given just the overview plz refer this page, http://odoo-80.readthedocs.org/en/latest/howtos/website.html Thanks in advance Kazim Mirza

I know the tuts but you just wanted to know routing so i have gave you an idea about it

I know the tuts but you just wanted to know routing so i have gave you an idea about it. so what you want to know?

작성자

I dont get the concept of adding the model name in the URL path , plz give some idea Karim.....