-
为 (HTML) 输出目的明确地将字符串标记为安全。返回的对象可以在适合字符串的任何地方使用。
可以在单个字符串上多次调用。
也可以用作装饰器。
为了构建 HTML 片段,您通常应该改用
django.utils.html.format_html()
如果修改,标记为安全的字符串将再次变得不安全。例如:
>>> mystr = '<b>Hello World</b> ' >>> mystr = mark_safe(mystr) >>> type(mystr) <class 'django.utils.safestring.SafeString'> >>> mystr = mystr.strip() # removing whitespace >>> type(mystr) <type 'str'>
本文介绍 django.utils.safestring.mark_safe
的用法。
声明
mark_safe(s)[source]
相关用法
- Python numpy ma.MaskedArray.view用法及代码示例
- Python matplotlib.patches.Rectangle用法及代码示例
- Python matplotlib.pyplot.step()用法及代码示例
- Python math.cos()用法及代码示例
- Python math.cosh()用法及代码示例
- Python math.acosh()用法及代码示例
- Python main()用法及代码示例
- Python matplotlib.axes.Axes.pie()用法及代码示例
- Python math.degrees()用法及代码示例
- Python math.fmod()用法及代码示例
- Python math.fsum()用法及代码示例
- Python numpy ma.sort用法及代码示例
- Python matplotlib.pyplot.semilogy()用法及代码示例
- Python math.factorial()用法及代码示例
- Python math.remainder()用法及代码示例
- Python math.asinh()用法及代码示例
- Python matplotlib.pyplot.inferno()用法及代码示例
- Python numpy matrix.tostring用法及代码示例
- Python matplotlib.axes.Axes.semilogx()用法及代码示例
- Python math.prod()用法及代码示例
- Python Tkinter maxsize()用法及代码示例
- Python math.atanh()用法及代码示例
- Python matplotlib.pyplot.clabel()用法及代码示例
- Python math.fabs()用法及代码示例
- Python math.log1p()用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.utils.safestring.mark_safe。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。