我正在使用Laravel 4。我想使用Laravel的刀锋模板引擎在视图中访问@if条件内的当前URL,但我不知道如何做到这一点。

我知道可以使用<?php echo URL::current();但是在@if blade语句中是不可能的。

有什么建议吗?


我个人不会尝试从视图中抓取它。我并不擅长Laravel,但我可以想象你需要将你的路由发送到一个控制器,然后在控制器中,将变量(通过数组)传递到你的视图,使用类似$url = Request::url();的东西。

这是一种方法。

编辑:实际上看看上面的方法,可能是更好的方法。


你可以使用: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


我会这样做:

@if (Request::path() == '/view')
    // code
@endif

其中'/view'是routes.php中的视图名。


也许你应该试试这个:

<li class="{{ Request::is('admin/dashboard') ? 'active' : '' }}">Dashboard</li>

你也可以使用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

最简单的方法是使用:Request::url();

但这里有一个复杂的方法:

URL::to('/').'/'.Route::getCurrentRoute()->getPath();

有两种方法:

<li{!!(Request::is('your_url')) ? ' class="active"' : '' !!}>

or

<li @if(Request::is('your_url'))class="active"@endif>

一个简单的引导导航条可以这样做:

    <li class="{{ Request::is('user/profile')? 'active': '' }}">
        <a href="{{ url('user/profile') }}">Profile </a>
    </li>

有点老了,但这在L5管用:

<li class="{{ Request::is('mycategory/', '*') ? 'active' : ''}}">

这将捕获/mycategory和/mycategory/slug


这是帮助我在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>

将此代码设置为自动应用于您在Laravel项目中使用HTMLBuilder库所需的每个<li> +

<script type="text/javascript">
    $(document).ready(function(){
        $('.list-group a[href="/{{Request::path()}}"]').addClass('active');
    });
</script>

要在刀片视图中获得当前url,您可以使用以下,

<a href="{{url()->current()}}">Current Url</a>

你可以用下面的代码进行比较,

@if (url()->current() == 'you url')
    //stuff you want to perform
@endif

与 Laravel 5.4 相关:

全局函数

@if (request()->is('/'))
    <p>Is homepage</p>
@endif

在Laravel中,另一种编写if和else的方法是使用path

 <p class="@if(Request::is('path/anotherPath/*')) className @else anotherClassName @endif" >
 </p>

希望能有所帮助


与使用URL::path()来检查当前路径位置不同,您可能需要考虑Route::currentRouteName(),以便万一您更新了路径,您不需要再次浏览所有页面来更新路径名称。


@if(request()->path()=='/path/another_path/*')
@endif

实现目标的方法有很多,其中有一种我一直在用

 Request::url()

试试这个:

< class=“{{ Request::is('Dashboard') ? 'active' : '' }}”> <a href=“{{ url('/Dashboard') }}”> <i class=“fa fa-dashboard”></i> <span>Dashboard</span> </a> </li>


试试这个方法:

<a href="{{ URL::to('/registration') }}">registration </a>

你应该试试这个:

<b class="{{ Request::is('admin/login') ? 'active' : '' }}">Login Account Details</b>

试试这个:

@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

你可以使用这段代码来获取当前URL:

echo url()->current();

echo url()->full();

这是我从Laravel的文件中得到的。


对于命名路由,我使用:

@if(url()->current() == route('routeName')) class="current" @endif

class="nav-link {{ \Route::current()->getName() == 'panel' ? 'active' : ''}}"

最简单的方法是

<li class="{{ Request::is('contacts/*') ? 'active' : '' }}">Dashboard</li>

这个云捕获联系人/,联系人/创建,联系人/编辑…


在Blade文件

@if (Request::is('companies'))
   Companies name 
@endif

对我来说,这是最好的方法:

class="{{url()->current() == route('dashboard') ? 'bg-gray-900 text-white' : 'text-gray-300'}}"

您将通过使用下面的代码获得url。

例如,你的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

对于拉拉维尔 5.5+

<a class="{{ Request::segment(1) == 'activities'  ? 'is-active' : ''}}" href="#">
                              <span class="icon">
                                <i class="fas fa-list-ol"></i>
                              </span>
                            Activities
                        </a>

1. 检查URL是否= X

简单地说,你需要检查URL是否完全像X,然后你显示一些东西。控制器:

if (request()->is('companies')) {
  // show companies menu or something
}

在Blade文件中——几乎一模一样:

@if (request()->is('companies'))
  Companies menu
@endif

2. 检查URL是否包含X

一个稍微复杂一点的例子——Request::is()方法允许一个模式参数,像这样:

if (request()->is('companies/*')) {
  // will match URL /companies/999 or /companies/create
}

3.检查路由的名称

你可能知道,每条路由都可以被分配一个名字,在routes/web.php文件中,它看起来是这样的:

Route::get('/companies', function () {
  return view('companies');
})->name('comp');

那么如何检查当前路由是否是“comp”呢?相对容易的:

if (\Route::current()->getName() == 'comp') {
  // We are on a correct route!
}

4. 按路由名称检查

如果按名称使用路由,则可以检查请求是否与路由名称匹配。

if (request()->routeIs('companies.*')) {
  // will match routes which name starts with companies.
}

Or

request()->route()->named('profile')

将匹配命名为profile的路由。这是检查当前URL或路由的四种方法。