2023-07-02
初识Flask
通过flask搭建简单的网站
from flask import Flask, render_template
app = Flask(__name__)#这是实例化Flask
#将函数index和“/show/info”这个网站关联
@app.route("/show/info")
def index():
# return "中国联通"
return render_template("index.html")#这是在templates目录下的index.html
if __name__ == '__main__':
app.run()
<h1>内容</h1>这个标签是一级标题,属于块级标签,占一整行
<div></div>块级标签
<span>内容</span>属于块内标签,所占行有限
<a href="网站">内容</a>超链接
列表
<ul>
<li>中国移动</li>
<li>中国电信</li>
<li>中国联通</li>
</ul>
表单
<table border="1">
<thead>
<tr>
<th>ID</th>
<th>姓名</th>
<th>年龄</th>
</tr>
</thead>
<tbody></tbody>
<tr>
<td>10</td>
<td>小米</td>
<td>15</td>
</tr>
</table>
图片超链接
<a href="https://baike.baidu.com/item/%E6%9D%8E%E7%99%BD/1043?fromModule=lemma_search-box">
<img style="width: 20%" src="/static/libai.webp"/>
</a>
input系列
<input type="text">#文本框
<input type="password">#密码框
<input type="file">
<input type="radio">
<input type="checkbox">#多选
<input type="button">#按钮
<input type="submit" value='提交'>#提交按钮标签:__,Web,render,index,Flask,标签,文杨 From: https://www.cnblogs.com/xtfz/p/17521066.html