如何在PHP或Laravel中访问JsonResponse对象中的属性值?

时间:2016-10-22 05:17:30

标签: php laravel laravel-5 laravel-5.1

我正在使用Ajax进行POST,而我的服务器正在获取数据。但是,我正在努力访问用户发送的值。简单来说,我如何访问" user"的值? (汤姆)?任何人都可以让我走上正轨。先感谢您。这是我的JsonResponse对象:

[2016-10-22 05:10:49] local.INFO: From Ajax: Illuminate\Http\JsonResponse Object
(
[data:protected] => {"user":"Tom","_token":"uRZJBVHH3worhjX4Ul6WlnJC1JYh3EVMNWob7Azr"}
[callback:protected] => 
[encodingOptions:protected] => 0
[headers] => Symfony\Component\HttpFoundation\ResponseHeaderBag Object
    (
        [computedCacheControl:protected] => Array
            (
                [no-cache] => 1
            )

        [cookies:protected] => Array
            (
            )

        [headerNames:protected] => Array
            (
                [cache-control] => Cache-Control
                [content-type] => Content-Type
            )

        [headers:protected] => Array
            (
                [cache-control] => Array
                    (
                        [0] => no-cache
                    )

                [content-type] => Array
                    (
                        [0] => application/json
                    )

            )

        [cacheControl:protected] => Array
            (
            )

    )

[content:protected] =>     {"user":"Tom","_token":"uRZJBVHH3worhjX4Ul6WlnJC1JYh3EVMNWob7Azr"}
[version:protected] => 1.0
[statusCode:protected] => 200
[statusText:protected] => OK
[charset:protected] => 
)

3 个答案:

答案 0 :(得分:10)

使用Laravel,也可以使用照亮getData()方法访问数据。

$someVar->getData();

https://laravel.com/api/5.3/Illuminate/Http/JsonResponse.html#method_getData

答案 1 :(得分:2)

我解决了我的问题,如果有人需要,我会分享它。 所以我获得JsonObjec的方式是在Routes.php中执行此操作:

Route::post('/register', function(){
if(Request::ajax()){
    Log::info('From Ajax: ' . print_r(Response::json(Request::all()), true));

    return var_dump(Response::json(Request::all()));
} 
});

但我这样做是为了实际访问用户(Tom)的价值。

$somevar = (Request::all());
Log::info('From Ajax: ' . print_r($somevar["user"], true));

这解决了我的问题。希望它可以帮助那里的任何人!

答案 2 :(得分:0)

使用Laravel,您可以像常规变量一样访问JSON数据。在你的情况下,你需要像:

$username = $request->get('user');