0
我想打開index.html含framset,如何打開HTML使用燒瓶框架
,但無法找到pic.html
我怎麼能這樣做
pic.html和index.html都在模板
的index.html
<body>
<iframe src="pic.html"></iframe>
</body>
flaskdemo.py
from flask import Flask,render_template
app = Flask(__name__)
@app.route('/')
def hello_world():
return render_template("index.html")
if __name__ == '__main__':
app.run()