2017-04-01 97 views
0

我刷新我的瀏覽器不更新中...運行後,但
改變也不會在瀏覽器的Python:js代碼在燒瓶

from flask import Flask, send_file, render_template, send_file 
app = Flask(__name__) 

@app.route('/') 
def hello_world(): 
    return send_file('templates/create_conf_view.html') 


if __name__ == '__main__': 
    app.run(debug=True, use_reloader=True, host='0.0.0.0', port=1672,threaded=True) 

什麼,我做錯了什麼影響呢?

回答

0

根據你的代碼,你需要有一個目錄結構如下:

app 
|_ 
    run.py 
    templates/ 
    |_create_conf_view.html 

根據docs你不應該渲染模板時,通過templates

更改原始文件,看看它的工作原理:

from flask import Flask, render_template 
app = Flask(__name__) 

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


if __name__ == '__main__': 
    app.run(debug=True, host='0.0.0.0', port=1672, thread=True) 

而且一定要在指定的端口來訪問你的應用程序!

+0

它正在工作......謝謝@dimmg – MaheshPVM