以下是我的Flask应用程序的布局方式。
Project/
main.py
Template/
web-form.html
index.html
我希望web-form.html
拥有一个从index.html
提取内容的iframe。
main.py
:
from flask import Flask, render_template, request
app= Flask(__name__, static_url_path='', template_folder='template')
@app.route('/')
def graphic():
return render_template('web-form.html')
web-form.html
:
<iframe src="index.html"></iframe>
但我发现iframe应该是404错误。我该如何解决这个问题?