gpt4 book ai didi

php - 使用 Laravel 链接到页面上的特定 anchor

转载 作者:可可西里 更新时间:2023-11-01 00:09:07 25 4
gpt4 key购买 nike

如何使用 Laravel 链接到 View 中的特定 ID?

我的 Controller :

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 添加到路由、 Controller ,甚至 View 的 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>

试试这个代码 ;) 希望它有用..

关于php - 使用 Laravel 链接到页面上的特定 anchor ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24275667/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com