Django 自訂html 標籤

來源:互聯網
上載者:User

標籤:自訂   django   html   

    



自訂一個html標籤參考:https://docs.djangoproject.com/en/dev/howto/custom-template-tags/    第一步:在 app下建立templatetags包,也就是本案例的bbs下建立templatetags包如下:    bbs/templatetags/__init__.py    bbs/templatetags/poll_extras.py    第二步:編寫poll_extras.py檔案,編寫成你需要的標籤,下面編寫的是,把資料轉為大寫字母        from django import  template     ###必須應用template模組        register = template.Library()        @register.filter        def test_tag(data):            print ‘tag:::  ‘ ,data            return data.upper()    第三步:在引用的html檔案中使用    {% load poll_extras %}    第四步:在html中應用這個標籤,如下: 把作者名稱改為大寫,它不能解析html內容    <a>{{ article.author.name|test_tag }}</a>     ## 這中調用方式用於@register.filter裝飾器,    如果是@register.simple_tag這種裝飾器就需要用下面的調用方法,且這中裝飾器可以解析html格式    <a>{% test_tag2 article.author.name %}</a>



from django.utils.safestring import mark_safefrom django import  template     ###必須應用template模組register = template.Library()@register.filterdef test_tag(data):    print ‘tag:::  ‘ ,data    return data.upper()@register.simple_tagdef test_tag2(data):    print ‘tag:::  ‘ ,data    #return data.upper()    a = ‘<h1>%s</h1>‘ % data    ##@register.simple_tag可以解析html返回,,    return mark_safe(a)         ##在新版的django中,如果需要用@register.simple_tag解析html文本,需要額外添加 :    from django.utils.safestring import mark_safe    這個make_safe模組才可以       如果是@register.simple_tag這種裝飾器就需要用下面的調用方法,且這中裝飾器可以解析html格式    <a>{% test_tag2 article.author.name %}</a>





本文出自 “奮鬥吧” 部落格,請務必保留此出處http://lvnian.blog.51cto.com/7155281/1858878

Django 自訂html 標籤

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.