django Strip/Remove HTML tags
在php中我们知道如果想要去掉html的标签的话,使用函数strip_tagsm在django中如何去去掉html的标签呢,下面是我在google中搜索到的结果。
To strip/remove HTML tags from an existing string we can use the strip_tags function.
# import the strip_tags
from django.utils.html import strip_tags
# simple string with html inside.
html = '<p>paragraph</p>'
print html # will produce: <p>paragraph</p>
stripped = strip_tags(html)
print stripped # will produce: paragraph
This is also available as a template tag:
{{ somevalue|striptags }}
If you want to remove only specific tags you need to use the removetags
from django.template.defaultfilters import removetags
html = '<strong>Bold...</strong><p>paragraph....</p>'
stripped = removetags(html, 'strong') # removes the strong only.
stripped2 = removetags(html, 'strong p') # removes the strong AND p tags.
Also available in template:
{{ value|removetags:"a span"|safe }}
在模板里面是使用去掉html标签的方法是不是很简单,嘿嘿。
参考的文章:
http://www.djangofoo.com/tag/strip_tags
http://snipplr.com/view/50835/
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/485
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/485