當前位置: 首頁>>代碼示例>>Python>>正文


Python Template.slug方法代碼示例

本文整理匯總了Python中jinja2.Template.slug方法的典型用法代碼示例。如果您正苦於以下問題:Python Template.slug方法的具體用法?Python Template.slug怎麽用?Python Template.slug使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在jinja2.Template的用法示例。


在下文中一共展示了Template.slug方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: create_template

# 需要導入模塊: from jinja2 import Template [as 別名]
# 或者: from jinja2.Template import slug [as 別名]
def create_template(user, org):

    # get the request data
    req_data = request_data()

    name = req_data.get('name')
    slug = req_data.get('slug')
    template = req_data.get('template')
    format = req_data.get('format')

    if not name or not template or not format:
        raise RequestError(
            "You must pass in a 'name', 'format', and 'template' to create a template. "
            "You only passed in: {}"
            .format(", ".join(req_data.keys())))
    try:
        t = Tmpl(template)
    except Exception as e:
        raise RequestError('This template is invalid: {}'.format(e.message))

    t = Template(
        org_id=org.id,
        name=name,
        template=template,
        format=format)
    if slug:
        t.slug = slug

    db.session.add(t)

    # no duplicates.
    try:
        db.session.commit()
    except Exception as e:
        raise RequestError(e.message)
    return jsonify(t)
開發者ID:abelsonlive,項目名稱:newslynx-core,代碼行數:38,代碼來源:tmpl_api.py


注:本文中的jinja2.Template.slug方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。