如何在Flask中使用iframe?

时间:2017-03-08 17:50:04

标签: python iframe flask

以下是我的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错误。我该如何解决这个问题?

0 个答案:

没有答案