1 Star 0 Fork 2

tjustb185150134/finance

forked from 高先生/finance 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
hello.py 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
高先生 提交于 2021-03-22 09:50 . mc_gao
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) # 设置端口号最好在启动之前设置
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/tjustb185150134/finance.git
git@gitee.com:tjustb185150134/finance.git
tjustb185150134
finance
finance
master

搜索帮助