python bottle簡單框架 模板

測試鏈接: 127.0.0.1:8082/test

from bottle import route, run

@route('/test')
def test():
    username = '666'
    return username

run(server='tornado', host='127.0.0.1', port='8082', reloader=True)
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章