web-dev-qa-db-ja.com

許可されていないメソッドflask error 405

flask登録フォームを開発していますが、エラーが表示されます。

error 405 method not found.

コード:

import os
# Flask
from flask import Flask, request, session, g, redirect, url_for, abort, \
     render_template, flash, Markup, send_from_directory, escape
from werkzeug import secure_filename

from cultura import app

# My app
from include import User

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

@app.route('/registrazione', methods=['POST']) 
def registration():
    if request.method == 'POST':
        username= request.form.username.data
        return render_template('registration.html', username=username)
    else :
        return render_template('registration.html')

registration.html:

<html>
<head> <title>Form di registrazione </title>
 </head> 

    <body>
    {{ username }}
    <form id='registration' action='/registrazione' method='post'>
    <fieldset >
    <legend>Registrazione utente</legend>
    <input type='hidden' name='submitted' id='submitted' value='1'/>
    <label for='name' >Nome: </label> 
    <input type='text' name='name' id='name' maxlength="50" /> <br>
    <label for='email' >Indirizzo mail:</label>
    <input type='text' name='email' id='email' maxlength="50" />
     <br>
    <label for='username' >UserName*:</label>
    <input type='text' name='username' id='username' maxlength="50" />
     <br>
    <label for='password' >Password*:</label>
    <input type='password' name='password' id='password' maxlength="50" />
    <br>
    <input type='submit' name='Submit' value='Submit' />

    </fieldset>
    </form>
    </body>
    </html>

localhost:5000/registrazione、エラーが表示されます。私は何を間違えていますか?

16
Matteo

これは、ルートを定義するときにPOSTリクエストのみを許可するためです。

/registrazioneブラウザで、最初にGETリクエストを実行します。フォームを送信すると、ブラウザがPOSTを実行します。したがって、あなたのような自己送信フォームの場合、両方を処理する必要があります。

を使用して

@app.route('/registrazione', methods=['GET', 'POST']) 

動作するはずです。

46
Lukas Graf

flask jQuery、Ajax、jsonでwsgiを使用するアプリの例:

activecalls.py

from flask import Flask, jsonify

application = Flask(__name__, static_url_path='')

@application.route('/')
def activecalls():
    return application.send_static_file('activecalls/active_calls_map.html')

@application.route('/_getData', methods=['GET', 'POST'])
def getData():
    #hit the data, package it, put it into json.
    #ajax would have to hit this every so often to get latest data.
    arr = {}
    arr["blah"] = []
    arr["blah"].append("stuff");

    return jsonify(response=arr)


if __name__ == '__main__':
    application.run()

Javascript json、/ static/activecalls/active_calls_map.html:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js">
</script>

<script>
$.ajax({
    //url : "http://dev.consumerunited.com/wsgi/activecalls.py/_getData",
    url : "activecalls.py/_getData",
    type: "POST",
    data : formData,
    datatype : "jsonp",
    success: function(data, textStatus, jqXHR)
    {
        //data - response from server
         alert("'" + data.response.blah + "'");
    },
    error: function (jqXHR, textStatus, errorThrown)
    {
         alert("error: " + errorThrown);

    }
});
</script>

これを実行すると。警告ボックスに「stuff」と表示されます。

1
Eric Leschinski

今読んでいる人のためだけに。フォームデータにアクセスするには、まず/ registrazioneをレンダリングする必要があります。書くだけ。

@app.route("/registrazione")
    def render_registrazione() -> "html":
        return render_template("registrazione.html")

def registration()を定義する前に。シーケンスが重要です。イベントが利用可能になるまでデータにアクセスできません。これが問題の私の理解です。

1
nullbyte