91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

django format_html flatatt 函數

發布時間:2020-08-04 14:51:56 來源:網絡 閱讀:2502 作者:weidabao123 欄目:開發技術

Django中的常用的函數format_html,用于格式化生成html模板

def format_html(format_string, *args, **kwargs):
    """
    Similar to str.format, but passes allarguments through conditional_escape,
    and calls 'mark_safe' on the result. Thisfunction should be used instead
    of str.format or % interpolation to buildup small HTML fragments.
    """
    args_safe = map(conditional_escape, args)
    kwargs_safe = {k: conditional_escape(v) for(k, v) in six.iteritems(kwargs)}
return mark_safe(format_string.format(*args_safe,**kwargs_safe))

可以看到文檔說明,format_html類似于str.format函數,格式化生成html元素。

select_html=format_html(‘<select{}>’,’id=id_birth’)


另外一個函數flatatt函數,將字典轉換為單個字符串 key=”value”的形式,,如 {‘height’:30,’width’:20,’required’:True},將會轉換為字符串‘height=20 widt=30 requried’

def flatatt(attrs):
  """
  Convert adictionary of attributes toa single string.
  The returnedstring will contain aleading space followed by key="value",
  XML-stylepairs.It is assumed that the keys do not need to beXML-escaped.
  If thepassed dictionary is empty,then return an empty string.    
  The resultis passed through'mark_safe'.
  """    
  key_value_attrs = []   
  boolean_attrs = []    
  for attr,value in attrs.items():        
    if isinstance(value, bool):            
      if value:               
         boolean_attrs.append((attr,))        
    else:           
      key_value_attrs.append((attr,value))    
    return (
         format_html_join('', ' {}="{}"', sorted(key_value_attrs)) +
         format_html_join('', ' {}', sorted(boolean_attrs))


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

遂溪县| 静海县| 卢氏县| 高邑县| 临夏市| 和硕县| 武鸣县| 本溪市| 安塞县| 昌邑市| 靖安县| 若羌县| 扶绥县| 藁城市| 静安区| 剑川县| 奇台县| 汉沽区| 土默特右旗| 乐亭县| 德惠市| 巴彦淖尔市| 西乡县| 中卫市| 蒲城县| 日土县| 周口市| 新巴尔虎左旗| 来宾市| 衡东县| 桂东县| 临汾市| 固安县| 洛南县| 从江县| 大连市| 德钦县| 北宁市| 崇州市| 青冈县| 康马县|