gpt4 book ai didi

javascript - Laravel 奇怪的 cookie 问题

转载 作者:行者123 更新时间:2023-11-28 06:45:35 31 4
gpt4 key购买 nike

我试图在 cookie 存在时隐藏警报消息。

所以我有这个代码:

@foreach($alerts as $alert)
@if(empty(Cookie::get('alert_'.$alert->id)))
<!-- alert -->
<div class="alert alert-{{ $alert->type }} text-center">
<a href="#" onclick="createCookie('alert_{{ $alert->id }}','true','9999')" class="close" data-dismiss="alert" aria-label="close">&times;</a>
{{ $alert->message }}
</div>
@endif
@endforeach

但是当 cookie 具有值时,它仍然会显示。

当我在代码中使用 isset() 时,出现连接重置错误。

我使用javascript来生成cookie;

function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}

我做错了什么?

最佳答案

检查cookie是否存在

试试这个:

您还可以使用请求来获取cookie

要检索 cookie 的值,请使用以下语法:

$value = $request->cookie('nameOfCookie');

如果需要,添加实例Illuminate\Http\Request

您可以按如下方式检查cookie是否存在

if (Request::hasCookie('alert_'.$alert->id)) 
{
// Success code here
} else {
// Failure code here
}

您也可以同样检查:

if(Cookie::get('alert_'.$alert->id) != null) { .. }

有用的文档:hasCookie方法。

希望这对您有所帮助。

关于javascript - Laravel 奇怪的 cookie 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33442484/

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