gpt4 book ai didi

php - 将 Evercookie 值传递出函数

转载 作者:行者123 更新时间:2023-11-28 10:59:46 24 4
gpt4 key购买 nike

我完全陷入尝试从检索函数中获取最佳的evercookie值并将其放入我可以使用的JS或PHP函数中。

下面的代码可以触发 best_candidate 的警报,但我不知道如何从函数中返回值(我猜嵌套函数是让我绊倒的原因),所以我可以使用ec.get() 函数之外的值。

任何帮助将不胜感激。谢谢!

function getCookie(best_candidate, all_candidates)
{
alert("The retrieved cookie is: " + best_candidate + "\n" +
"You can see what each storage mechanism returned " +
"by looping through the all_candidates object.");

for (var item in all_candidates)
{
document.write("Storage mechanism " + item +
" returned: " + all_candidates[item] + "<br>");
}
}

ec.get("id", getCookie);

最佳答案

这个带有许多参数的回调函数是为更具体的需求而设计的。

您所需要的是:

var cookie;
ec.get("id", function(value) { cookie = value; });

关于php - 将 Evercookie 值传递出函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6933097/

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