web-dev-qa-db-ja.com

このルートではGETメソッドはサポートされていません。サポートされているメソッド:POST。 laravel 5.8 Ajax

私はajaxリクエストからのデータをlaravelのデータベースに保存する方法についてもっと理解しようとしています。この場合のデータは未加工の(JSON FORMATTED)データであり、これをコードに追加しないと正常に機能することを確認しています(データベースへの保存に注意してください)

保存部分

 $input = Input::get('name');
 $json = new JsonTest;
 $json->json = $input;
 $json->save();

それは正常に動作しますが、コード内のこの部分(保存部分)があると、エラーが発生します

   The GET method is not supported for this route. Supported methods: POST.

テキスト領域をデータベースに保存するにはどうすればよいですか。データベース データベース

web.php

 Route::post('/customer/ajaxupdate', 'AjaxController@updateCustomerRecord')- 
 >name('jsonTest');

コントローラー

public function updateCustomerRecord(Request $request)
{

    if(request()->ajax()){

        $input = Input::get('name');
        //$input = $request->all();
        $json = new JsonTest;
        $json->json = $input;
        $json->save();

        return response()->json(['status' => 'succes', 'message' => 'saved in database']);

    } else {

        return response()->json(['status' => 'fail', 'message' => 'this is not json']);

    }

}

ブレード

 <!DOCTYPE html>
 <html lang="en">
<head>
<title>JavaScript - read JSON from URL</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<meta name="csrf-token" content="{{ csrf_token() }}" />
</head>

<body>
<textarea  oninput="myFunction()" id="input" name="input" style="height: 
500px;width: 500px">
</textarea>

<script>
const warning = 'This json is not correctly formatted';
const text = {status: "failed", message: "this is not correct json format"};

$.ajaxSetup({
    headers: {

        'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')

    }
});

function myFunction(){

    let input = document.getElementById("input").value;

    try {
        let id = JSON.parse(input);
        if (id && typeof id === "object") {
            $.ajax({
                method: 'POST', // Type of response and matches what we said in the route
                url: '{{ route('jsonTest') }}', // This is the url we gave in the route
                data: {'id' : id}, // a JSON object to send back
                success: function(response){ // What to do if we succeed
                    console.log(response);
                },
                error: function(jqXHR, textStatus, errorThrown) { // What to do if we fail
                    console.log(JSON.stringify(jqXHR));
                    console.log("AJAX error: " + textStatus + ' : ' + errorThrown);
                }
            });
        }
    }
    catch (e) {
        console.log(warning);
        console.log(text);
    }
    return false;
}
</script>

</body>
</html>
7

私は同じ問題に一度直面しました。問題はhttpからhttpsへの自動リダイレクトにあります。したがって、APIを呼び出すときに、URLをhttps自体に変更しました。

0
Nidhin