摘要: form表单内容如下(GET方式) <!--action指定需要跳转的后端地址--> <form action="/test" method="get"> <div> 用户名:<input name="user" type="text"/> </div> <div> 密码: <input name= 阅读全文
posted @ 2022-06-09 17:16 whtjyt 阅读(2615) 评论(0) 推荐(0) 编辑
摘要: 使用Flask需要下载flask插件,直接使用pip install flask即可 新建一个文件,内容如下 from flask import Flask app = Flask(__name__) @app.route("/show/info") def index(): return "tes 阅读全文
posted @ 2022-06-09 17:13 whtjyt 阅读(608) 评论(0) 推荐(0) 编辑