1. Extracted from my laravel controller:
..
..
$data = json_decode($response, true);
return $data;
..
..
return view('homepage')->with('homeExclusives', $homeExclusives);
这是返回数据的示例,只是一个简短版本,因为返回的提要非常大,但这会让您了解它的结构方式。
array(4) {
["success"]=> bool(true)
["status"]=> int(200)
["bundle"]=> array(2) {
[0]=> array(631) {
["StreetDirPrefix"]=> string(2) "SW"
["DistanceToStreetComments"]=> NULL
}
[1]=> array(631) {
["StreetDirPrefix"]=> string(2) "NE"
["DistanceToStreetComments"]=> NULL
}
}
我需要从 [0] 和 [1] 中提取“StreetDirPrefix”值,但我总是收到错误消息。有人可以帮忙吗?
江户川乱折腾