我有兩個文件 - app.py,其中包含REST API的代碼,另一個頁面index.html使用AngularJS顯示API的一些內容。目前,我必須從瀏覽器中打開index.html文件才能使其工作(在部署服務器http://localhost:5000之後)。使用Flask設置REST API的URLS
我試圖
@app.route('/')
def index():
return render_template('/index.html',
title='Home')
這是給錯誤 「TemplateNotFound:/index.htm」 明明。目前,app.py和index.html位於同一個目錄中。如何更改格式以讓Flask知道它必須在此URL上呈現頁面index.html。
「它不工作」不是錯誤描述。 – str