donglongqiao9595 2016-12-31 18:39
浏览 64
已采纳

将json数据发送到Laravel服务器

I have an angular app where I send data (via json) to my laravel server. My server is on a VM(ubuntu):

This is where I send it to the server from the angular app.

this.http.post(this.loginURL, requestBody, options)

On my laravel server I have the route:

Route::get('patientlogin','UploadController@login');

And the controller method

 public function login(Request $request){
    // error_reporting(-1); // prints every error, warning, etc
    error_reporting(0); // no output at all

    // set content-type of response to json
    header('Content-Type: application/json');

    // import Auth class and custom functions
    // require_once('custom_functions.php');


    $LOGIN_LOG_FILE = "login1.log";
    $AUTH_HEADERS_FILE = "auth-headers1.txt";


    /*
        php://input is raw input, regardless of header field "content-type"
        The PHP superglobal $_POST, only is supposed to wrap data that is either
        application/x-www-form-urlencoded or multipart/form-data-encoded
        http://stackoverflow.com/a/8893792

        When sending only a JSON, $_POST etc will not be populated and php://input has to be used
        in the php scripts
        http://stackoverflow.com/questions/1282909/php-post-array-empty-upon-form-submission
        http://php.net/manual/de/wrappers.php.php
    */



    $content =  $request->instance();
    $json_raw = $content->json()->all();
    $json = json_decode($json_raw, true);


    /* <-- DEBUGGING START TODO delete */
    //read the header, where username and password are supposed to be in
    $headers = apache_request_headers();

    //print the contents of the headers array in a neat structure and log them
    $headersPrintable = print_r($headers, true);
    file_put_contents($AUTH_HEADERS_FILE, $headersPrintable, FILE_APPEND);

    $request = print_r($_REQUEST, true);
    $post = print_r($_POST, true);
    file_put_contents("auth-req.txt", $request, FILE_APPEND);
    file_put_contents("auth-post.txt", $post, FILE_APPEND);

    file_put_contents("auth-req-json.txt", $json_raw, FILE_APPEND);
    file_put_contents("auth-req-json_decoded.txt", $json, FILE_APPEND);
    /* DEBUGGING END --> */

    $valid = false;
    $username = "";

    //check if username and passord exist in the json-decoded version of php://input
    if(array_key_exists("username", $json) && array_key_exists("password", $json)) {
        $username = $json["username"];
        $password = $json["password"];
        $valid = Auth::checkCredentials($username, $password);
    }

    $response = array(
        "username" => $username,
        "valid" => $valid
    );

    echo json_encode($response);

    //exit();

}

Now when I run the app I've get the error:

POST http://ip/patientlogin 405 (Method Not Allowed)

When I change the get in my web.php to post I get this error:

polyfills.js:1 POST http://ip/patientlogin 500 (Internal Server Error)

and when I try to call the url in the browser:

MethodNotAllowedHttpException in RouteCollection.php line 218:

Someone any idea what the error could be or what am I doing wrong?

  • 写回答

1条回答 默认 最新

  • dongxiezhi0590 2016-12-31 19:12
    关注

    HTTP GET cannot have a body(it can, technically, but it's not meant to be). So if you're sending a body in the request you should to use post or put.

    You are getting method not allowed because you configured your route to use GET not POST.

    Change

    Route::get
    

    To

    Route::post 
    

    That should solve it

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 matlab中使用gurobi时报错
  • ¥15 WPF 大屏看板表格背景图片设置
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂