TIL,WIL(일간,주간 회고)
2022. 12.14 python flask redirect함수 관련 문제
worldint
2022. 12. 14. 23:49
@app.route('/detail/<a_id>', methods=['GET'])
def detail(a_id):
print(a_id)
return redirect(url_for('detail', num = 10))
@app.route('/detail')
def ddd():
return render_template('detail.html')
이러면 오류남
첫번째 잘못된점 :
url_for함수 부분에 'detail'이 아래있는 app.route('/detail') 이쪽으로
리다이랙트 해주라는 뜻인줄알았는데
저 detail은 함수 detail을 호출해주는것같다.
그래서 본인이 본인을 호출하게되면서 문제가 생긴다