2

これがFlaskアプリです:

from flask import Flask, request, render_template, redirect, url_for, flash
app = Flask(__name__)

@app.route('/')
def index():
    return render_template('index.html')

@app.route('/contact', methods = ['POST'])
def contact():
    if request.method == 'POST':
        name = request.form['name']
        email = request.form['email']
        message = request.form['message']

        flash(name)
        flash(email)
        flash(message)

    return redirect(url_for('index'))

if __name__ == '__main__':
    app.debug = True
    app.secret_key='a;sldfjka;oeiga;lbneas; biaweag'
    app.run()

これが私が使用しているテンプレートです:

<!DOCTYPE html>
<html>
    <head>
    </head>

    <body> 
        <form action="/contact" method="post">
            <input type="text" name="name" />
            <input type="text" name="email" />
            <textarea name="message"> </textarea>
            <input type="submit" />
        </form> 
        <ul>
        {% for message in get_flashed_messages() %}
            <li><h3> {{ message }} </h3></li>
        {% endfor %}
        </ul>
    </body>
</html>

そして、gunicornこれが私がそれを提供するために使用するコマンドラインです:

gunicorn --error-logfile err.log --access-logfile access.log \
--log-level debug -b 127.0.0.1:5000 --debug -w 4 wsgi:app

テンプレートのGETリクエストを適切に処理します。ただし、実際にフォームをPOSTすると、500が出力されます。応答ヘッダーは次のとおりです。

HTTP/1.1 500 INTERNAL SERVER ERROR
Server: gunicorn/0.17.2
Date: Thu, 21 Mar 2013 21:57:25 GMT
Connection: close
Content-Type: text/html
Content-Length: 291

gunicornのログに表示される内容は次のとおりです。

==> err.log <==
2013-03-21 17:12:38 [10092] [DEBUG] POST /contact

==> access.log <==
"127.0.0.1 - - [21/Mar/2013:17:12:38] "POST /contact HTTP/1.1" 500 291 \
"http://localhost:5000/" "Mozilla/5.0 (X11; Linux x86_64; rv:19.0) \
Gecko/20100101 Firefox/19.0"

Flaskの組み込み開発サーバーを使用してサービスを提供すると正常に動作します。

マーブレインは、これは私が見逃している非常に単純なものだと言っています。ああ。

4

1 に答える 1

5

name == メイン ブロックで secret_key を定義しました。Gunicorn は、アプリがフォーム送信を処理するために必要なキーを指定していなかったため、窒息していました。

if __name__ == '__main__':
    app.secret_key = #...

その行は... gunicorn によってスクリプトが実行されたときに評価される限り、他の場所にある必要があります。

app = Flask(__name__)
app.secret_key = #...

なんらかの適切なロギングがセットアップされていれば、この小さな失敗をすぐに見つけられたはずです。

于 2013-03-23T06:09:21.913 に答える