0

因此,在单击链接以查看单个视图时,页面会中断并且不会加载我的图像。

布局工作正常 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'));`

任何帮助将不胜感激这个问题让我发疯。

4

1 回答 1

4

对有限信息的最佳猜测是,您拥有相对于图像的 url,而不是绝对的。

所以你用类似的东西链接到你的图像

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

当你应该使用

<img src="/images/layout/header1.jpg" />
于 2013-06-04T17:06:15.910 回答