赞
踩
问题1、插入本地图像
(1)app = flask.Flask(__name__,static_url_path="***",static_folder="***"),其中星号位置是你制定的一个文件夹,通常设定为相同的文件夹
(2)<img src="****" />,其中星号位置为上一步指定的文件夹的路径中图像的绝对路径。
问题2、插入本地的html文件
加入我要在index.html中链接一个名为hello.html的文件。
(1)主程序app.py中
@app.route('/Hello')
def Hello():
return render_template('hello.html')
(2)index.html中
<a href="{{url_for('Hello')}}">Hello</a>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。