代码拉取完成,页面将自动刷新
同步操作将从 高先生/finance 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
from flask import Flask
import settings
app = Flask(__name__)
app.config.from_object(settings)
# app.config['ENV'] = 'development'
# app.config['DEBUG'] = True
@app.route('/')
def hello_world1():
return 'Hello World111111!'
@app.route('/index')
def hello_world2():
return 'Hello World222222!'
@app.route('/test')
def hello_world3():
return '<font color="red"> Hello World333333! </font>'
# add_url_rule()实现的绑定
# @app.route('/index')
# def index():
# return 'welcome everyone!'
#
# # 等效的
# def index():
# return 'welcome everyone!'
# app.add_url_rule('/index', view_func=index)
# 2.路由的变量规则:
#
# string (缺省值) 接受任何不包含斜杠的文本 *
# int 接受正整数 *
# float 接受正浮点数
# path 类似 string ,但可以包含斜杠
# uuid 接受 UUID 字符串
#
#
# @app.route('/getcity/<key>') # key就是一个变量名,默认是字符串类型的
# def get_city(key): # 参数是必须添加的
# print(type(key))
# return data.get(key)
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8000)
# if __name__ == '__main__':
# app.run(port=8080) # 设置端口号最好在启动之前设置
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。