Laravel 5.4 JSON美化输出格式

时间:2017-09-23 02:03:17

标签: php json laravel

我是Laravel Development的新手。

我想在WEB页面上显示JSON Beautify格式化结果。

为此我写了下面的代码......

Route::get('profile/{id?}', function ($id=1)
{
    $user = array('My Name', 'Laravel Developer', 'My Institution');
    return $user;
});

每当我访问 http://localhost/New/Laravel/profile http://localhost/New/Laravel/profile/时,它会以简单格式显示JSON而不是美丽的格式。

可能是什么问题?

像Pic一样的美丽格式

http://vegibit.com/wp-content/uploads/2017/04/laravel-collection-rendered-as-json.png

1 个答案:

答案 0 :(得分:0)

有关用户详情

Route::get('profile/{id?}', function ($id=1) {
    $user = User::find($id);
    return response()->json($user);
});

对于你的阵列

Route::get('profile/{id?}', function ($id=1) {
    $user = array(
        'name' => 'My Name', 
        'title' => 'Laravel Developer', 
        'other' => 'My Institution'
    );

    return response()->json($user);
});