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

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

有什么建议吗?


当前回答

在Blade文件

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

其他回答

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

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

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

希望能有所帮助

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

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

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

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

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