2014-03-25 49 views
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() 

回答

1

燒瓶不提供templates目錄中的文件。您需要設置/pic.html的路由並將相應模板作爲其中的一部分:

from flask import Flask,render_template 

app = Flask(__name__) 


@app.route('/') 
def hello_world(): 
    return render_template("index.html") 

@app.route('/pic.html') 
def pic(): 
    return render_template("pic.html") 

if __name__ == '__main__': 
    app.run()