-
為 (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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。