使用200

时间:2019-03-11 18:37:06

标签: php laravel

我试图弄清楚如何转储从我击中的端点返回的实际状态消息,但我不太清楚如何获得它。

目前,我正在尝试使用终点/尝试块。在try部分中,我点击了它,刷新了会话并创建了200条消息。当我现在点击此按钮时,我会在下面收到成功消息:

$authService = new AuthService();
$authLogout = $authService->logout($logoutToken);

Session::flush();

$response = json_decode(response()->json(['success' => 'success'], 200);
dd($response);

所以我知道它是成功的,但是我想返回端点实际以200状态发回的JSON解码消息。

我该怎么做呢?

更新:Var dump on response()

object(Illuminate\Http\JsonResponse)#762 (9) { ["data":protected]=> string(21) "{"success":"success"}" ["callback":protected]=> NULL ["encodingOptions":protected]=> int(0) ["headers"]=> object(Symfony\Component\HttpFoundation\ResponseHeaderBag)#760 (5) { ["computedCacheControl":protected]=> array(1) { ["no-cache"]=> bool(true) } ["cookies":protected]=> array(0) { } ["headerNames":protected]=> array(2) { ["cache-control"]=> string(13) "Cache-Control" ["content-type"]=> string(12) "Content-Type" } ["headers":protected]=> array(2) { ["cache-control"]=> array(1) { [0]=> string(8) "no-cache" } ["content-type"]=> array(1) { [0]=> string(16) "application/json" } } ["cacheControl":protected]=> array(0) { } } ["content":protected]=> string(21) "{"success":"success"}" ["version":protected]=> string(3) "1.0" ["statusCode":protected]=> int(200) ["statusText":protected]=> string(2) "OK" ["charset":protected]=> NULL }

0 个答案:

没有答案