详解Python flask的前后端交互
目录
前端index.htmlscript.js后端app.py总结场景:按下按钮,将左边的下拉选框内容发送给后端,后端再将返回的结果传给前端显示。
按下按钮之前:
按下按钮之后:
代码结构
这是flask默认的框架(html写在templates文件夹内、css和js写在static文件夹内)
前端
index.html
很简单的一个select下拉选框,一个按钮和一个文本,这里的{{ temp }}
是从后端调用的。
TEMP <script src="/static/js/script.js"></script> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>{{ temp }}
script.js
这里给按钮添加一个监听事件,按下就会给服务器发送内容,成功了则返回内容并更改display
。
注意
需要在html里添加<script src="https://code.jquery.com/jquery-3.6.0.min.js">
,否则$
字符会报错。dataType
如果选择的是json,则前后端交互的内容均应为json格式。
const person = document.getElementById("person-one"); const swap = document.getElementById("swap"); function printPerson() { $.ajax({ type: "POST", url: "/index", dataType: "json", data:{"person": person.value}, success: function(msg) { console.log(msg); $("#display").text(msg.person);//注意显示的内容 }, error: function (xhr, status, error) { console.log(error); } }); } swap.addEventListener("click", printPerson);
后端
app.py
from flask import Flask, render_template, request app = Flask(__name__) @app.route("/") @app.route("/index", methods=["GET", "POST"]) def index(): message = "选择的人物为:" if request.method == "POST": person = str(request.values.get("person")) return {"person": person} return render_template("index.html", temp=message) if __name__ == "__main__": app.run(host="0.0.0.0", port=8987, debug=True)
总结
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注脚本之家的更多内容!
关键词: 如果选择
X 关闭
X 关闭
- 15G资费不大降!三大运营商谁提供的5G网速最快?中国信通院给出答案
- 2联想拯救者Y70发布最新预告:售价2970元起 迄今最便宜的骁龙8+旗舰
- 3亚马逊开始大规模推广掌纹支付技术 顾客可使用“挥手付”结账
- 4现代和起亚上半年出口20万辆新能源汽车同比增长30.6%
- 5如何让居民5分钟使用到各种设施?沙特“线性城市”来了
- 6AMD实现连续8个季度的增长 季度营收首次突破60亿美元利润更是翻倍
- 7转转集团发布2022年二季度手机行情报告:二手市场“飘香”
- 8充电宝100Wh等于多少毫安?铁路旅客禁止、限制携带和托运物品目录
- 9好消息!京东与腾讯续签三年战略合作协议 加强技术创新与供应链服务
- 10名创优品拟通过香港IPO全球发售4100万股 全球发售所得款项有什么用处?