php – 使用Laravel链接到页面上的特定锚点
作者:互联网
如何使用Laravel链接到视图中的特定ID?
我的控制器:
public function services() {
return View::make('services.custom_paint', array('pageTitle' => 'Custom Paint'))->with('default_title', $this->default_title);
}
我的路线:
Route::get('/custom_paint', 'PagesController@services');
我试图将#id添加到路由,控制器,甚至添加到视图的URL :: to.似乎没什么用.
我假设只是将id添加到URI就可以了,但显然我错过了一些东西.
解决方法:
// Controller
Route::get('/custom_paint', array('as' => 'custom_paint', 'uses' => 'PagesController@services'));
// View
<a href="{{ URL::route('custom_paint') }}#id">LINK</a>
试试这段代码;)希望它有效..
标签:laravel-routing,php,laravel,blade 来源: https://codeday.me/bug/20190722/1506650.html