Home > Article > Web Front-end > How to delete cookies in vuejs
How to delete cookies in vuejs: 1. Read the cookie through getCookie; 2. Set the cookie through setCookie; 3. Delete the cookie through "delCookie (name) {...}".
The operating environment of this article: Windows 7 system, Vue version 2.9.6, DELL G3 computer.
How to delete cookies in vuejs?
vue.js sets, gets and deletes cookies
The project needs the front-end to obtain the cookies returned by the background and make judgments based on them. I used it under the main.js entry file
Specific code:
new Vue({ el: '#app', router, template: '<App/>', components: { App }, methods:{ //读取cookie,需要注意的是cookie是不能存中文的,如果需要存中文,解决方法是后端先进行编码encode(),前端取出来之后用decodeURI('string')解码。(安卓可以取中文cookie,IOS不行) getCookie(name) { var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)"); if (arr = document.cookie.match(reg)){ return true; // return (arr[2]); }else{ return false } }, //设置cookie name为cookie的名字,value是值,expiredays为过期时间(天数) setCookie (name, value, expiredays) { var exdate = new Date(); exdate.setDate(exdate.getDate() + expiredays); document.cookie = c_name + "=" + escape(value) + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString()); }, //删除cookie delCookie (name) { var exp = new Date(); exp.setTime(exp.getTime() - 1); var cval = getCookie(name); if (cval != null) document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString(); } }, created(){ this.setCookie('openId',123,2) if (this.getCookie('openId')) { console.log('has cookie') this.delCookie ('openId') }else{ console.log('has not cookie') } } })
Related recommendations: "vue.js tutorial"
The above is the detailed content of How to delete cookies in vuejs. For more information, please follow other related articles on the PHP Chinese website!