0
瓶不能成爲一個index.html頁......它似乎不承認靜態文件夾的Heroku的Python瓶供應index.html頁面
,供應中的index.html以這種方式
from flask import Flask, request, render_template, url_for, redirect
# set the project root directory as the static folder, you can set others.
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def root():
if request.method == 'GET':
return redirect(url_for('static', filename='index.html'))
if request.method == 'POST':
但是我收到一個內部服務器錯誤
運行'Heroku的logs'然後在此處添加錯誤的回溯中的代碼塊。這將有所幫助。 – orokusaki
你的應用在哪個屏幕截圖中? – davidism