2
我有一位朋友這次幫助英文。燒瓶錯誤當我運行程序
我有更多的問題獲得加載新路線。
我有這樣的測試代碼:
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('main.html')
@app.route('/order')
def index():
return render_template('order.html')
if __name__ == '__main__':
app.run()
而且我得到這個錯誤:
View function mapping is overwriting an existing endpoint function: index
請幫助我。我希望英語更好。
你似乎是定義'索引'兩次。 –
我有兩個答案。我接受哪一個? –
完全取決於你,但如果你沒有其他的基礎,我會選擇最早的。 –