gpt4 book ai didi

javascript - 使用当前 url 在 javascript 中保存 Cookie 在 PHP 中用双引号 $_COOKIE 保存

转载 作者:行者123 更新时间:2023-11-28 08:38:16 27 4
gpt4 key购买 nike

我使用 jQuery Cookie 保存 cookie,然后在 PHP 中访问它。

$( document ).on( 'click', '#ai1ec-calendar-view .ai1ec-load-event', function( e ) {
e.preventDefault();
$.cookie.raw = true;
$.cookie( 'ai1ec_calendar_url', document.URL );
window.location.href = this.href;
} );

但是如果我将其转储到 PHP 中,我会添加双引号,如下图所示。发生什么事了?

enter image description here

最佳答案

问题与 cookie 字符串应该被引用有关,因此 jQuery Cookie 添加了双引号。 PHP中的解决方案是使用json_decode

$href = json_decode( $_COOKIE['ai1ec_calendar_url'] );

关于javascript - 使用当前 url 在 javascript 中保存 Cookie 在 PHP 中用双引号 $_COOKIE 保存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20817870/

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