您好,登錄后才能下訂單哦!
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))
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。