在将其设置为“_ga”之后,检索cookie的最佳方法是什么?我需要在数据库中本地保存cookie值。
样本代码:
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-281681-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(
我尝试在我的Laravel项目中使用npm安装js (),但是我一直得到相同的ReferenceError: cookie不是定义错误。它对的本地副本和CDN都很好,但是我想弄清楚为什么它不能通过npm工作。
我尝试过的:
npm i js-cookie
npm i js-cookie --save
npm i js-cookie --save-dev
紧接着是
npm run dev
我得到的结果是:
js v2.2.1包含在我的package.json中的依赖项下或devDependencies中
js-cookie出现在node_mnodules下面。
Referen
我使用模块tough-cookie-filestore,它将cookie保存到本地文件中。当设置request使用此cookie jar时,它要求该文件已经存在于磁盘上。当我在多个模块中使用这个cookie jar时,我希望避免在模块顶部出现一个大的代码块来检查cookie文件是否存在,如果没有创建它,所以我创建了一个模块initcookie.js来完成这个任务。
我的问题是,这是一种安全和好的方法吗?initcookie.init()确保文件存在,但我能确保在执行new FileCookieStore(config.cookiePath)之前运行它吗?
var initcookie = re
我使用universal-cookie在本地存储,然后通过管道进入商店。
class App extends Component {
componentDidMount() {
// if a cookie is present, save the value in the store for use communication
// with the server. If the cookie is undefined, the user is redirected to the login page.
// Redirection is handled by