ChatGPT解决这个技术问题 Extra ChatGPT

如何在 Laravel 4 中的 @if 语句(刀片)中获取当前 URL?

我正在使用 Laravel 4。我想在使用 Laravel 的 Blade 模板引擎的视图中访问 @if 条件内的当前 URL,但我不知道该怎么做。

我知道它可以使用 <?php echo URL::current(); ?> 之类的东西来完成,但在 @if 刀片语句中是不可能的。

有什么建议么?

以下任何答案对您的问题有帮助吗?

R
Rubens Mariuzzo

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


我试过这个,失败了:x
在我的情况下,我使用起始 / 作为 URL,删除它可以解决问题
我使用下一个格式: ,因为带有 {{ some_code }} 的格式使用字符串编码。
url() now returns a builder instance。必须使用 url()->current()
尽管我很久以前就对此表示赞同,但今天我在 Laravel 5.7 上遇到了麻烦,最终让它工作:@if (Request::path() != 'login')。请注意“登录”之前缺少斜线。
N
Naing Win

您还可以使用 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' 相同。
@Hkan 两者都不一样,Route::is('testing') ->>测试它不起作用Route::is('test') ->>测试它会起作用 Route::current()->getName() == 'testing' 别名和 url 不同
@Naveen 不,Route::is() 检查路线名称,而不是路径。
也是简写Route::currentRouteName()
@Hkan是的,但是在使用URL中的参数时不起作用,例如令牌...
D
Dean Gite

也许你应该试试这个:

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

Z
Zoe stands with Ukraine

要在 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(url()->current() == '/admin/search-result' ``` 我用了这段代码,但它不起作用?
@MahdiSafari 在这种情况下只需写 @if(Request::is('admin/search-result'))
这非常有效。谢谢
J
Jucaman

我会这样做:

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

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


如何判断当前目录是否在家?我的意思是,公共/。啊,我明白了,我只需输入 =='public'
如果在 route.php 中主目录是 '/',你只需写 == '/')
你将如何使它与参数一起工作?不仅是路线名称。
您可以在路由名称后以多种方式连接参数,具体取决于您配置路由的方式。
我这样做:Request::url() - 比你得到完整的 URL
A
Abduhafiz

这对我在 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>

谢谢,我知道代码,但谷歌在 5 秒内就把我带到了这里,哈哈。
同样适用于 laravel 4.2 并且运行良好。谢谢
也在 Laravel 5.6 上工作,谢谢......这让我免于为每个视图制作导航:D
Z
Zoe stands with Ukraine

有点旧,但这在 L5 中有效:

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

这会同时捕获 /mycategory 和 /mycategory/slug


我正在使用 {{ Request::is('clientes/*') ? 'active' : ''}}
R
Rob

拉拉维尔 5.4

全局函数

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

如果您正在处理诸如 domain.com/?page_id=1、domain.com/?page_id=2 之类的查询字符串,这并不总是有效,因为这些 URL 也等于“/”
我用过request()->routeIs('...')
A
Alias

我个人不会尝试在视图内抓住它。我对 Laravel 并不感到惊讶,但我想您需要将路由发送到控制器,然后在控制器内,使用 $url = Request::url(); 之类的东西将变量(通过数组)传递到您的视图中。

无论如何,这是一种方法。

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


Z
Zoe stands with Ukraine

您可以使用此代码获取当前 URL:

echo url()->current();

echo url()->full();

我从 Laravel 文档中得到这个。


A
Alejandro Silva

一个带引导程序的简单导航栏可以这样完成:

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

S
Slowwie

对我来说,这最有效:

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

S
Siva

您将使用以下代码获得 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

s
shasi kanth

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

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

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

g
gines.nt

有两种方法可以做到这一点:

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

或者

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

p
pardeep

你应该试试这个:

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

N
Naveen DA

最简单的方法是

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

此colud捕获联系人/,联系人/创建,联系人/编辑...


A
Ahmed Sayed Sk

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

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

A
Alex Pilyavskiy

对于命名路线,我使用:

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

F
Faridul Khan

在刀片文件中

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

K
Krishnamoorthy Acharya

使用路径在 Laravel 中编写 if 和 else 的另一种方法

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

希望能帮助到你


K
Kenneth Sunday

而不是使用 URL::path() 来检查您当前的路径位置,您可能需要考虑 Route::currentRouteName() 所以以防万一您更新路径,您不需要浏览所有页面来更新再次输入路径名。


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

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

虽然此代码可能会回答问题,但提供有关此代码为何和/或如何回答问题的额外上下文可提高其长期价值。
Z
Zoe stands with Ukraine

尝试这个:

@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

感谢您提供此代码片段,它可能会提供一些有限的即时帮助。 proper explanation would greatly improve its long-term value 通过显示为什么这是解决问题的好方法,并且会使其对有其他类似问题的未来读者更有用。请edit您的回答以添加一些解释,包括您所做的假设。
R
Rafiqul Islam

尝试这个:

  • 仪表板

  • Z
    Zoe stands with Ukraine

    有很多方法可以实现,其中一种我总是使用

     Request::url()
    

    J
    JDamour

    对于 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>
    

    m
    msanford

    试试这种方式:

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

    为您的答案添加一些解释