栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

五分钟使用Python实现一个前后端分离的WebAPP(基于Flask)

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

五分钟使用Python实现一个前后端分离的WebAPP(基于Flask)

直接运行即可,无需任何额外的服务器。

python app.py

运行日志

 * Serving Flask app 'app' (lazy loading)
 * Environment: production
   WARNING: This is a development server. Do not use it in a production deployment.
   Use a production WSGI server instead.
 * Debug mode: on
 * Restarting with stat
 * Debugger is active!
 * Debugger PIN: 103-468-086
 * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
目录结构
static/
 |- main.css
templates/
 |- index.html
app.py
源码

app.py

from flask import Flask
from flask import render_template

app = Flask(__name__)


@app.route('/')
def news():
    ctx = {
        'title': 'DEMO',
        'msg': 'Hello World !',
    }
    return render_template('index.html', ctx=ctx)


if __name__ == '__main__':
    app.run(host='127.0.0.1', debug=True, port=3000)

templates/index.html



	{{ ctx.title }}
    


	

{{ ctx.msg }}

static/main.css

h1 {
	text-align: center;
	color: blue;
	font-size: 35px;
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/740912.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号