单页视图无法从布局加载图像

时间:2013-06-04 17:00:42

标签: php laravel laravel-4

因此,点击链接查看单个视图后,页面会断开并且不会加载我的图像。

布局工作正常 http://i.imgur.com/v6BO8AU.png

布局坏了 http://i.imgur.com/REDIgcn.png

链接到路线

{{URL::route('post',$post->id)}}

后控制器

public function getPost($id = null)
{
    return View::make('index.post')
      ->with('post',Post::find($id)
      ->with('title','Post');
}

路线

  `Route::get('post/{id},array('as'=>'post','uses'=>'PostsController@getPost'));`

任何帮助都会被理解,这个问题让我疯狂。

1 个答案:

答案 0 :(得分:4)

有限信息的最佳猜测是,你有相对而非绝对的图像的网址。

所以你用

之类的东西链接到你的图像
<img src="images/layout/header1.jpg" />

何时应该使用

<img src="/images/layout/header1.jpg" />