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

Hi, i am trying to print key and value of dict item in for loop. I managed to print keys but, i don't know how to print values of them. My code :

<odoo>

        <data>

        <template id="index">

                <title>artin_review</title>

                <h1>Review Module</h1>

                <h2 class="lead">Reviews of Hotel</h2>

                <t t-foreach="summary" t-as="summary_part">

                        <p><t t-esc="summary_part"/></p>

                </t>


        </template>

        </data>

</odoo>

아바타
취소
베스트 답변

hello

for print the value you have to use keyword _value at the end of your variable.

like 

 <t t-foreach="summary" t-as="summary_part">

              <p><t t-esc="summary_part"/></p> <!-- print key -->

              <p><t t-esc="summary_part_value"/></p> <!-- print value -->

</t>

아바타
취소
베스트 답변

i try this code to read dictionary but it dose not work


<select name="gender"id="gender"class="form_control">
​<option>Select Genderoption>
​<option t-att-value="gender">
​<t t-out="gender_value"/>
option>
select>
아바타
취소
관련 게시물 답글 화면 활동
1
9월 18
106
1
5월 17
8469
1
8월 16
6104
0
2월 25
1124
2
12월 24
1463