本文整理汇总了Python中pyquery.PyQuery.__html__方法的典型用法代码示例。如果您正苦于以下问题:Python PyQuery.__html__方法的具体用法?Python PyQuery.__html__怎么用?Python PyQuery.__html__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyquery.PyQuery
的用法示例。
在下文中一共展示了PyQuery.__html__方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: render
# 需要导入模块: from pyquery import PyQuery [as 别名]
# 或者: from pyquery.PyQuery import __html__ [as 别名]
def render(template, data, weld=True, layout='layout'):
with open('./solder/templates/%s.html' % template) as f:
t = PyQuery(f.read())
t_body = t('body')
if weld:
if 'welds' in data:
welds = data['welds']
if len(welds):
for weld in welds:
t(weld[0]).weld(weld[1])
if 'sources' in data:
sources = data['sources']
script = t('<script id="welds" type="text/javascript"></script>')
text = """
jQuery(document).ready(function($) {
"""
for source in sources:
text += "$('%s').solder('%s');" % source
text += """
});
"""
script.text(text)
t_body.append(script)
if layout is not None:
with open('./solder/templates/%s.html' % layout) as f:
l = PyQuery(f.read())
l('head').append(t('head *'))
l_body = l('body')
for name, value in t_body[0].items():
if name == 'class':
l_body.addClass(value)
else:
l_body.attr(name, value)
html = t_body.html()
if html:
l('#content').html(html)
t = l
return t.__html__()