bottle模版参数定义

1
2
3
4
5
6
7
8
from bottle import route, run, template

@route('/')
def f():
return template('bottle模版参数定义.tpl')


run(port=8088)

转载请注明来源 https://tianweiye.github.io