이 글은 VUE 프런트엔드 쿠키 단순 연산 코드를 주로 소개하며, 관심 있는 친구들이 참고하면 도움이 될 것입니다.
다음은 간단한 쿠키 작업으로, 현재 프런트엔드 예시에만 해당되며, 구체적인 내용은 다음과 같습니다
주의할 점은 두 가지입니다:
1 쿠키 콘텐츠 저장 이름
2. 만료 시간을 과거 시간으로 설정하는 것입니다. 실현됨
<body> <p id="app"> <button @click="clearCookie()"> 清除cookie </button> </p> </body> <script> let app = new Vue({ el: "#app", data: { }, created: function () { this.checkCookie(); }, methods: { //设置cookie setCookie: function (cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expires=" + d.toUTCString(); console.info(cname + "=" + cvalue + "; " + expires); document.cookie = cname + "=" + cvalue + "; " + expires; console.info(document.cookie); }, //获取cookie getCookie: function (cname) { var name = cname + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') c = c.substring(1); if (c.indexOf(name) != -1) return c.substring(name.length, c.length); } return ""; }, //清除cookie clearCookie: function () { this.setCookie("username", "", -1); }, checkCookie: function () { var user = this.getCookie("username"); if (user != "") { alert("Welcome again " + user); } else { user = prompt("Please enter your name:", ""); if (user != "" && user != null) { this.setCookie("username", user, 365); } } } } }) </script>
위 내용은 VUE 프런트엔드 쿠키 간단한 조작 예시 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!