Flask-POST 오류 405 메서드가 허용되지 않음 Flask를 배우기 시작했고 POST 메서드를 허용하는 양식을 만들려고합니다 . 내 방법은 다음과 같습니다. @app.route('/template', methods=['GET', 'POST']) def template(): if request.method == 'POST': return("Hello") return render_template('index.html') 그리고 내 index.html: Enter Python to execute: 양식로드 ( GET 수신시 렌더링)가 제대로 작동합니다. 그러나 제출 버튼을 클릭 하면 POST 405 error Method Not Allowed. "Hello"가 표시되지 않는 이유는 무엇 입니까? 오타가..