我想一個JSON傳遞給我的看法Laravel 5 JSON /刀片
有了這個代碼:
Route::get('json', function() {
$path = storage_path() . "/json/dish.json";
$json = json_decode(file_get_contents($path), true);
return View::make('pages.json')->withJson($json);
});
隨着{{dd($json)}}
我收到此:
array:1 [▼
"dish" => array:297 [▼
0 => array:2 [▶]
1 => array:2 [▶]
2 => array:2 [▶]
3 => array:5 [▶]
...
當我嘗試顯示我的$json
的內容時:
@foreach($json["dish"] as $key => $item)
{{$item}}
@endforeach
我收到此錯誤信息:
ヶ輛()預計參數1是字符串數組給定(查看:/用戶/拜亞動力/文檔/開發商/ DEV1 /資源/視圖/頁/ json.blade.php)
我在做什麼錯在這裏?
'$ item'是一個'array'。 –
0 =>數組:2 [▶]顯然$項也是一個數組 – g9m29