【问题标题】:I want to write my product name like this - my_productnam....more... | in django我想这样写我的产品名称 - my_productnam....更多... |在 django
【发布时间】:2020-12-06 13:23:04
【问题描述】:
<div class="itemCard_Name">{{i.Title |slice:"0:30"}}...</div>

如果项目名称超过最大字符数限制,则“更多...”按钮应自动放置在第 31 个字符处。

【问题讨论】:

    标签: python django django-templates e-commerce slice


    【解决方案1】:

    试一试:

    {{ i.Title|slice:":30" }} {% if i.Title|length > 30 %}<button type="button">More...</button>{% endif %}
    

    【讨论】:

      【解决方案2】:

      我认为这是自定义模板过滤器的作用:

      custom template filter

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2021-10-04
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多