html调用python_flask之模板html中调用python函数方法

一:html里面可以调用python写的函数

add_template_global(调用函数的引用,"调用函数的名字")

from common.libs.UrlManager importUrlManager

app.add_template_global(UrlManager.buildStaticUrl,"buildStaticUrl")

app.add_template_global(UrlManager.buildUrl,"buildUrl")

app.add_template_global(UrlManager.buildImageUrl,"buildImageUrl")

作用:这个是为了让前端界面可以通过这个url找到需要的元素

#-*- coding: utf-8 -*-

importtimefrom application importappclassUrlManager(object):def __init__(self):pass@staticmethoddefbuildUrl( path ):returnpath

@staticmethoddefbuildStaticUrl(path):

release_version= app.config.get( 'RELEASE_VERSION')print("这是什么玩意:",release_version) #访问login.html一共打印了10次None,源模板7次,本身打印3次

ver &#

你可能感兴趣的:(html调用python)