有人知道为什么这在 laravel 4 中不起作用吗?我想在发布到 github 之前我会在这里检查一下。
在控制器中:
return View::make('home.index')
->with('bcrumbs', array("home.index" => "Home","home.privacy" =>"Privacy Policy"))
在模板中:
@foreach ($bcrumbs as $k => $elem}
<li><a href='{{ URL::route($k) }}'>{{ $elem }}</a></li>
@endforeach
即使我删除了 foreach 中的任何处理并只写“hi”,这也是完全失败的。铬报告:
Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection without sending any data.