我正在使用 Laravel 4。我想在使用 Laravel 的 Blade 模板引擎的视图中访问 @if
条件内的当前 URL,但我不知道该怎么做。
我知道它可以使用 <?php echo URL::current(); ?>
之类的东西来完成,但在 @if
刀片语句中是不可能的。
有什么建议么?
您可以使用:Request::url()
获取当前 URL,这里是一个示例:
@if(Request::url() === 'your url here')
// code
@endif
Laravel 提供了一种方法来判断 URL 是否匹配模式
if (Request::is('admin/*'))
{
// code
}
查看相关文档以获取不同的请求信息:http://laravel.com/docs/requests#request-information
您还可以使用 Route::current()->getName()
检查您的路线名称。
示例:routes.php
Route::get('test', ['as'=>'testing', function() {
return View::make('test');
}]);
看法:
@if(Route::current()->getName() == 'testing')
Hello This is testing
@endif
Route::is('testing')
与 Route::current()->getName() == 'testing'
相同。
Route::is('testing')
->>测试它不起作用Route::is('test')
->>测试它会起作用 Route::current()->getName() == 'testing'
别名和 url 不同
Route::is()
检查路线名称,而不是路径。
Route::currentRouteName()
也许你应该试试这个:
<li class="{{ Request::is('admin/dashboard') ? 'active' : '' }}">Dashboard</li>
要在 blade
视图中获取 current url
,您可以使用以下功能,
<a href="{{url()->current()}}">Current Url</a>
因此,您可以使用以下代码进行比较,
@if (url()->current() == 'you url')
//stuff you want to perform
@endif
request()->getQueryString()
,它与 url()->current()
结合使用非常有用,因为这样可以省去查询字符串。
@if(Request::is('admin/search-result'))
我会这样做:
@if (Request::path() == '/view')
// code
@endif
其中 '/view' 是 routes.php 中的视图名称。
=='public'
== '/')
Request::url()
- 比你得到完整的 URL
这对我在 Laravel 5.2 中引导活动导航类有帮助:
<li class="{{ Request::path() == '/' ? 'active' : '' }}"><a href="/">Home</a></li>
<li class="{{ Request::path() == 'about' ? 'active' : '' }}"><a href="/about">About</a></li>
有点旧,但这在 L5 中有效:
<li class="{{ Request::is('mycategory/', '*') ? 'active' : ''}}">
这会同时捕获 /mycategory 和 /mycategory/slug
{{ Request::is('clientes/*') ? 'active' : ''}}
拉拉维尔 5.4
全局函数
@if (request()->is('/'))
<p>Is homepage</p>
@endif
request()->routeIs('...')
我个人不会尝试在视图内抓住它。我对 Laravel 并不感到惊讶,但我想您需要将路由发送到控制器,然后在控制器内,使用 $url = Request::url();
之类的东西将变量(通过数组)传递到您的视图中。
无论如何,这是一种方法。
编辑:实际上看看上面的方法,可能是更好的方法。
您可以使用此代码获取当前 URL:
echo url()->current();
echo url()->full();
我从 Laravel 文档中得到这个。
一个带引导程序的简单导航栏可以这样完成:
<li class="{{ Request::is('user/profile')? 'active': '' }}">
<a href="{{ url('user/profile') }}">Profile </a>
</li>
对我来说,这最有效:
class="{{url()->current() == route('dashboard') ? 'bg-gray-900 text-white' : 'text-gray-300'}}"
您将使用以下代码获得 url
。
例如,您的网址如 https//www.example.com/testurl?test
echo url()->current();
Result : https//www.example.com/testurl
echo url()->full();
Result: https//www.example.com/testurl?test
最简单的方法是使用:Request::url();
但这里有一个复杂的方法:
URL::to('/').'/'.Route::getCurrentRoute()->getPath();
有两种方法可以做到这一点:
<li{!!(Request::is('your_url')) ? ' class="active"' : '' !!}>
或者
<li @if(Request::is('your_url'))class="active"@endif>
你应该试试这个:
<b class="{{ Request::is('admin/login') ? 'active' : '' }}">Login Account Details</b>
最简单的方法是
<li class="{{ Request::is('contacts/*') ? 'active' : '' }}">Dashboard</li>
此colud捕获联系人/,联系人/创建,联系人/编辑...
将此代码设置为自动应用于每个 <li>
+ 您需要在 Laravel 项目中使用 HTMLBuilder
库
<script type="text/javascript">
$(document).ready(function(){
$('.list-group a[href="/{{Request::path()}}"]').addClass('active');
});
</script>
对于命名路线,我使用:
@if(url()->current() == route('routeName')) class="current" @endif
在刀片文件中
@if (Request::is('companies'))
Companies name
@endif
使用路径在 Laravel 中编写 if 和 else 的另一种方法
<p class="@if(Request::is('path/anotherPath/*')) className @else anotherClassName @endif" >
</p>
希望能帮助到你
而不是使用 URL::path() 来检查您当前的路径位置,您可能需要考虑 Route::currentRouteName() 所以以防万一您更新路径,您不需要浏览所有页面来更新再次输入路径名。
class="nav-link {{ \Route::current()->getName() == 'panel' ? 'active' : ''}}"
@if(request()->path()=='/path/another_path/*')
@endif
尝试这个:
@if(collect(explode('/',\Illuminate\Http\Request::capture()->url()))->last() === 'yourURL')
<li class="pull-right"><a class="intermitente"><i class="glyphicon glyphicon-alert"></i></a></li>
@endif
有很多方法可以实现,其中一种我总是使用
Request::url()
对于 Laravel 5.5 +
<a class="{{ Request::segment(1) == 'activities' ? 'is-active' : ''}}" href="#">
<span class="icon">
<i class="fas fa-list-ol"></i>
</span>
Activities
</a>
试试这种方式:
<a href="{{ URL::to('/registration') }}">registration </a>
url()
now returns a builder instance。必须使用url()->current()
@if (Request::path() != 'login')
。请注意“登录”之前缺少斜线。