不收到POST请求

时间:2018-07-11 14:18:22

标签: http post laravel-5

我在http://sakura-city.info地址有一个网站。

在该站点中,我有一条路线:

Route::post('/yandex','GirlsController@reciverYandex');

控制器:

public function reciverYandex(Request $request){
    echo 'yandex';
    Storage::put('file.txt','Test');
}

我发送了发帖请求地址:sakura-city.info/yandex

但是在file.txt中没有新文本。

文件路径:public/file.txt

我的网站没有收到请求吗?

1 个答案:

答案 0 :(得分:0)

 public function reciverYandex(Request $request){
        $date= Carbon::now();
        File::append(base_path().'/public/file.txt', 'data2'.PHP_EOL);
        File::append(base_path().'/public/file.txt','oprration_id:'. $request['operation_id'].','.'datetime: '.$request['datetime'].','.$request['sha1_hash'].','.$request['currency'].',lable:'.$request['lable'].','.$date.PHP_EOL);