【发布时间】:2019-05-06 08:33:31
【问题描述】:
我的 json 响应有点问题。
我将它转储到我的 php 代码中,结果就是我在此处附加的内容
如何转储 statusText ?
我已经尝试过解码,我也尝试过:
dump($myVar['statusText']);
或者类似的东西
(为了获得我发布的我的 json 的转储,我刚刚做了
dump($myVar);)
JsonResponse {#325
#data: "{"code":"OK","status":"ok","data":{"UUID":"f239ae18-98af-4224-8b4f-7713c71a5576","order":{something here },"orderRows":[something else here}}"
#callback: null
#encodingOptions: 271
+headers: ResponseHeaderBag {#326
#computedCacheControl: array:2 [
"no-cache" => true
"private" => true
]
#cookies: []
#headerNames: array:4 [
"content-type" => "Content-Type"
"access-control-allow-origin" => "Access-Control-Allow-Origin"
"cache-control" => "Cache-Control"
"date" => "Date"
]
#headers: array:4 [
"content-type" => array:1 [
0 => "application/json; charset=utf-8"
]
"access-control-allow-origin" => array:1 [
0 => "*"
]
"cache-control" => array:1 [
0 => "no-cache, private"
]
"date" => array:1 [
0 => "Mon, 06 May 2019 08:15:28 GMT"
]
]
#cacheControl: []
}
#content: "{"code":"OK","status":"ok","data":{"UUID":"f239ae18-98af-4224-8b4f-7713c71a5576","order":{something},"orderRows":[something else}}"
#version: "1.0"
#statusCode: 200
#statusText: "OK"
#charset: null
}
只是想看看
"status" => 'ok' 我的生活会很完美 :D
【问题讨论】:
-
这是来自 laravel 吗?已经有laravel.com/api/5.8/Illuminate/Http/JsonResponse.html 的类和文档,有一个
->status已经公开,您可以使用。和其他方法->getData()以及
标签: php json jsonresponse