2016-12-30 138 views
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 

請幫助我。我希望英語更好。

+2

你似乎是定義'索引'兩次。 –

+0

我有兩個答案。我接受哪一個? –

+0

完全取決於你,但如果你沒有其他的基礎,我會選擇最早的。 –

回答

4

您定義了index()兩次。你必須改變其中的一個功能。

3

您正在同一範圍內定義兩次函數index。燒瓶修飾器使它聽起來更加複雜,完全是。