iframe页面在烧瓶页面上不正确

时间:2018-08-08 23:14:04

标签: html flask

我想在我的网站上嵌入一个网页,但是当我运行初始化python文件并看到页面127.0.0.1/5000时,它只有一个空框,因此此框中没有w3schools网站。这是为什么?谢谢

__ init_ _.py:

@app.route("/mapi")
def sd():
    return render_template("reew.html")

reew.html:

<!DOCTYPE html>
<html>
<body>

<iframe src="https://www.w3schools.com">
  <p>Your browser does not support iframes.</p>
</iframe>

</body>
</html>

0 个答案:

没有答案
相关问题