python学习

This commit is contained in:
2019-07-18 08:59:26 +08:00
parent 8ebdee9a2c
commit 7bd7a50cff
347 changed files with 149728 additions and 82 deletions

View File

@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
from flask import Blueprint
from flask import Blueprint,render_template
route_index = Blueprint( 'index_page',__name__ )
@route_index.route("/")
def index():
return "Hello World"
return render_template("index/index.html")