python3 之 天天生鲜 详情页 商品详情展示 以及 商品数量变化

python3  之 天天生鲜  详情页 商品详情展示 以及 商品数量变化[Python常见问题]

这鸟样:

 

类似于这样:

 

 

<ul class="detail_tab clearfix">
                <li class="active" id="tag_detail">商品介绍</li>
                <li id="tag_comment">评论</li>
            </ul>

            <div class="tab_content" id="tab_detail">
                <dl>
                    <dt>商品详情:</dt>
                    <dd>
                        {{ sku.goods.desc }}&nbsp;&nbsp;&nbsp;&nbsp;&gt;&gt;&gt;&gt;自动转义
                        <hr>
{#      ------------   过滤器safe 关闭转义      -------------        #}&gt;&gt;&gt;&gt;过滤器safe关闭转义
                        {{ sku.goods.desc|safe }}
                     <!--标签autoescape:设置一段代码都禁用转义,接受on、off参数
                     {% autoescape off %}
                     {{ sku.goods.desc|safe }}
                     {%endautoescape%} -->
                    </dd>
                </dl>
            </div>
            <div class="tab_content" id="tab_comment" style="display: none;">
                {% for order in orders %}
                <dl>
                    <dd>客户:{{ order.order.user.username }}&nbsp;&nbsp;&nbsp;时间:{{ order.order.create_time }}</dd>
                    <dt>{{ order.comment }}</dt>
                </dl>
                <hr/>
                {% endfor %}
            </div>
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python3 之 天天生鲜 详情页 商品详情展示 以及 商品数量变化