从Laravel PHP中获取JSON请求的价值

时间:2015-10-28 11:40:39

标签: php json laravel

我在routes.php中收到回复,这个回复是JSON,这是我的代码:

Route::post('/prueba', function(){
     if(Request::ajax()){    
    echo Response::json(Request::all());       
    }
 });

当我从中得到回声时,我在控制台中得到了所有这些:

enter image description here

例如,我需要从auction_price获得价值吗?

1 个答案:

答案 0 :(得分:2)

试试这个

Route::post('/prueba', function(){
 if(Request::ajax()){    
echo Response::json(Request::get('auction_price'));       
}
});