<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
        問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
        當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

        在Vue中如何使用Cookie操作實(shí)例

        來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:34:04
        文檔

        在Vue中如何使用Cookie操作實(shí)例

        在Vue中如何使用Cookie操作實(shí)例:大家好,由于公司忙著趕項(xiàng)目,導(dǎo)致有段時(shí)間沒有發(fā)布新文章了。今天我想跟大家談?wù)凜ookie的使用。同樣,這個(gè)Cookie的使用方法是我從公司的項(xiàng)目中抽出來的,為了能讓大家看懂,我會盡量寫詳細(xì)點(diǎn)。廢話少說,我們直接進(jìn)入正題。 一、安裝Cookie 在Vue2.
        推薦度:
        導(dǎo)讀在Vue中如何使用Cookie操作實(shí)例:大家好,由于公司忙著趕項(xiàng)目,導(dǎo)致有段時(shí)間沒有發(fā)布新文章了。今天我想跟大家談?wù)凜ookie的使用。同樣,這個(gè)Cookie的使用方法是我從公司的項(xiàng)目中抽出來的,為了能讓大家看懂,我會盡量寫詳細(xì)點(diǎn)。廢話少說,我們直接進(jìn)入正題。 一、安裝Cookie 在Vue2.

        大家好,由于公司忙著趕項(xiàng)目,導(dǎo)致有段時(shí)間沒有發(fā)布新文章了。今天我想跟大家談?wù)凜ookie的使用。同樣,這個(gè)Cookie的使用方法是我從公司的項(xiàng)目中抽出來的,為了能讓大家看懂,我會盡量寫詳細(xì)點(diǎn)。廢話少說,我們直接進(jìn)入正題。

        一、安裝Cookie

        在Vue2.0下,這個(gè)貌似已經(jīng)不需要安裝了。因?yàn)楫?dāng)你創(chuàng)建一個(gè)項(xiàng)目的時(shí)候,npm install 已經(jīng)為我們安裝好了。我的安裝方式如下:

        # 全局安裝 vue-cli
        $ npm install --global vue-cli
        # 創(chuàng)建一個(gè)基于 webpack 模板的新項(xiàng)目
        $ vue init webpack my-project
        # 安裝依賴,走你
        $ cd my-project
        $ npm install
        

        這是我創(chuàng)建好的目錄結(jié)構(gòu),大家可以看一下:


        項(xiàng)目結(jié)構(gòu)

        二、封裝Cookie方法

        在util文件夾下,我們創(chuàng)建util.js文件,然后上代碼

        //獲取cookie、
        export function getCookie(name) {
         var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)");
         if (arr = document.cookie.match(reg))
         return (arr[2]);
         else
         return null;
        }
        
        //設(shè)置cookie,增加到vue實(shí)例方便全局調(diào)用
        export function setCookie (c_name, value, expiredays) {
         var exdate = new Date();
         exdate.setDate(exdate.getDate() + expiredays);
         document.cookie = c_name + "=" + escape(value) + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString());
        };
        
        //刪除cookie
        export function 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();
        };
        
        

        三、在HTTP中把Cookie傳到后臺

        關(guān)于這點(diǎn),我需要說明一下,我們這里使用的是axios進(jìn)行HTTP傳輸數(shù)據(jù),為了更好的使用axios,我們在util文件夾下創(chuàng)建http.js文件,然后封裝GET,POST等方法,代碼如下:

        import axios from 'axios' //引用axios
        import {getCookie} from './util' //引用剛才我們創(chuàng)建的util.js文件,并使用getCookie方法
        
        // axios 配置
        axios.defaults.timeout = 5000; 
        axios.defaults.baseURL = 'http://localhost/pjm-shield-api/public/v1/'; //這是調(diào)用數(shù)據(jù)接口
        
        // http request 攔截器,通過這個(gè),我們就可以把Cookie傳到后臺
        axios.interceptors.request.use(
         config => {
         const token = getCookie('session'); //獲取Cookie
         config.data = JSON.stringify(config.data);
         config.headers = {
         'Content-Type':'application/x-www-form-urlencoded' //設(shè)置跨域頭部
         };
         if (token) {
         config.params = {'token': token} //后臺接收的參數(shù),后面我們將說明后臺如何接收
         }
         return config;
         },
         err => {
         return Promise.reject(err);
         }
        );
        
        
        // http response 攔截器
        axios.interceptors.response.use(
         response => {
        //response.data.errCode是我接口返回的值,如果值為2,說明Cookie丟失,然后跳轉(zhuǎn)到登錄頁,這里根據(jù)大家自己的情況來設(shè)定
         if(response.data.errCode == 2) {
         router.push({
         path: '/login',
         query: {redirect: router.currentRoute.fullPath} //從哪個(gè)頁面跳轉(zhuǎn)
         })
         }
         return response;
         },
         error => {
         return Promise.reject(error.response.data)
         });
        
        export default axios;
        
        /**
         * fetch 請求方法
         * @param url
         * @param params
         * @returns {Promise}
         */
        export function fetch(url, params = {}) {
        
         return new Promise((resolve, reject) => {
         axios.get(url, {
         params: params
         })
         .then(response => {
         resolve(response.data);
         })
         .catch(err => {
         reject(err)
         })
         })
        }
        
        /**
         * post 請求方法
         * @param url
         * @param data
         * @returns {Promise}
         */
        export function post(url, data = {}) {
         return new Promise((resolve, reject) => {
         axios.post(url, data)
         .then(response => {
         resolve(response.data);
         }, err => {
         reject(err);
         })
         })
        }
        
        /**
         * patch 方法封裝
         * @param url
         * @param data
         * @returns {Promise}
         */
        export function patch(url, data = {}) {
         return new Promise((resolve, reject) => {
         axios.patch(url, data)
         .then(response => {
         resolve(response.data);
         }, err => {
         reject(err);
         })
         })
        }
        
        /**
         * put 方法封裝
         * @param url
         * @param data
         * @returns {Promise}
         */
        export function put(url, data = {}) {
         return new Promise((resolve, reject) => {
         axios.put(url, data)
         .then(response => {
         resolve(response.data);
         }, err => {
         reject(err);
         })
         })
        }
        
        

        四、在登錄組件使用Cookie

        由于登錄組件我用的是Element-ui布局,對應(yīng)不熟悉Element-ui的朋友們,可以去惡補(bǔ)一下。后面我們將講解如何使用它進(jìn)行布局。登錄組件的代碼如下:

        <template>
         <el-form ref="AccountFrom" :model="account" :rules="rules" label-position="left" label-width="0px"
         class="demo-ruleForm login-container">
         <h3 class="title">后臺管理系統(tǒng)</h3>
         <el-form-item prop="u_telephone">
         <el-input type="text" v-model="account.u_telephone" auto-complete="off" placeholder="請輸入賬號"></el-input>
         </el-form-item>
         <el-form-item prod="u_password">
         <el-input type="password" v-model="account.u_password" auto-complete="off" placeholder="請輸入密碼"></el-input>
         </el-form-item>
         <el-form-item style="width:100%;">
         <el-button type="primary" style="width:100%" @click="handleLogin" :loading="logining">登錄</el-button>
         </el-form-item>
         </el-form>
        </template>
        
        <script>
         export default {
         data() {
         return {
         logining: false,
         account: {
         u_telephone:'',
         u_password:''
         },
         //表單驗(yàn)證規(guī)則
         rules: {
         u_telephone: [
         {required: true, message:'請輸入賬號',trigger: 'blur'}
         ],
         u_password: [
         {required: true,message:'請輸入密碼',trigger: 'blur'}
         ]
         }
         }
         },
         mounted() {
         //初始化
         },
         methods: {
         handleLogin() {
         this.$refs.AccountFrom.validate((valid) => {
         if(valid) {
         this.logining = true;
        //其中 'm/login' 為調(diào)用的接口,this.account為參數(shù)
         this.$post('m/login',this.account).then(res => {
         this.logining = false;
         if(res.errCode !== 200) {
         this.$message({
         message: res.errMsg,
         type:'error'
         });
         } else {
         let expireDays = 1000 * 60 * 60 ;
         this.setCookie('session',res.errData.token,expireDays); //設(shè)置Session
         this.setCookie('u_uuid',res.errData.u_uuid,expireDays); //設(shè)置用戶編號
         if(this.$route.query.redirect) {
         this.$router.push(this.$route.query.redirect);
         } else {
         this.$router.push('/home'); //跳轉(zhuǎn)用戶中心頁
         }
         }
         });
         } else {
         console.log('error submit');
         return false;
         }
         });
         }
         }
         }
        </script>
        
        

        五、在路由中驗(yàn)證token存不存在,不存在的話會到登錄頁

        在 router--index.js中設(shè)置路由,代碼如下:

        import Vue from 'vue'
        import Router from 'vue-router'
        import {post,fetch,patch,put} from '@/util/http'
        import {delCookie,getCookie} from '@/util/util'
        
        import Index from '@/views/index/Index' //首頁
        import Home from '@/views/index/Home' //主頁
        import right from '@/components/UserRight' //右側(cè)
        import userlist from '@/views/user/UserList' //用戶列表
        import usercert from '@/views/user/Certification' //用戶審核
        import userlook from '@/views/user/UserLook' //用戶查看
        import usercertlook from '@/views/user/UserCertLook' //用戶審核查看
        
        import sellbill from '@/views/ticket/SellBill' 
        import buybill from '@/views/ticket/BuyBill'
        import changebill from '@/views/ticket/ChangeBill' 
        import billlist from '@/views/bill/list' 
        import billinfo from '@/views/bill/info' 
        import addbill from '@/views/bill/add' 
        import editsellbill from '@/views/ticket/EditSellBill' 
        
        import ticketstatus from '@/views/ticket/TicketStatus' 
        import addticket from '@/views/ticket/AddTicket' 
        import userinfo from '@/views/user/UserInfo' //個(gè)人信息
        import editpwd from '@/views/user/EditPwd' //修改密碼
        
        Vue.use(Router);
        
        const routes = [
         {
         path: '/',
         name:'登錄',
         component:Index
         },
         {
         path: '/',
         name: 'home',
         component: Home,
         redirect: '/home',
         leaf: true, //只有一個(gè)節(jié)點(diǎn)
         menuShow: true,
         iconCls: 'iconfont icon-home', //圖標(biāo)樣式
         children: [
         {path:'/home', component: right, name: '首頁', menuShow: true, meta:{requireAuth: true }}
         ]
         },
         {
         path: '/',
         component: Home,
         name: '用戶管理',
         menuShow: true,
         iconCls: 'iconfont icon-users',
         children: [
         {path: '/userlist', component: userlist, name: '用戶列表', menuShow: true, meta:{requireAuth: true }},
         {path: '/usercert', component: usercert, name: '用戶認(rèn)證審核', menuShow: true, meta:{requireAuth: true }},
         {path: '/userlook', component: userlook, name: '查看用戶信息', menuShow: false,meta:{requireAuth: true}},
         {path: '/usercertlook', component: usercertlook, name: '用戶審核信息', menuShow: false,meta:{requireAuth: true}},
         ]
         },
         {
         path: '/',
         component: Home,
         name: '信息管理',
         menuShow: true,
         iconCls: 'iconfont icon-books',
         children: [
         {path: '/sellbill', component: sellbill, name: '賣票信息', menuShow: true, meta:{requireAuth: true }},
         {path: '/buybill', component: buybill, name: '買票信息', menuShow: true, meta:{requireAuth: true }},
         {path: '/changebill', component: changebill, name: '換票信息', menuShow: true, meta:{requireAuth: true }},
         {path: '/bill/editsellbill', component: editsellbill, name: '編輯賣票信息', menuShow: false, meta:{requireAuth: true}}
         ]
         },
         {
         path: '/bill',
         component: Home,
         name: '票據(jù)管理',
         menuShow: true,
         iconCls: 'iconfont icon-books',
         children: [
         {path: '/bill/list', component: billlist, name: '已開票據(jù)列表', menuShow: true, meta:{requireAuth: true }},
         {path: '/bill/info', component: billinfo, name: '票據(jù)詳細(xì)頁', menuShow: false, meta:{requireAuth: true }},
         {path: '/bill/add', component: addbill, name: '新建開票信息', menuShow: true, meta:{requireAuth: true }}
        
         ]
         },
         {
         path: '/',
         component: Home,
         name: '系統(tǒng)設(shè)置',
         menuShow: true,
         iconCls: 'iconfont icon-setting1',
         children: [
         {path: '/userinfo', component: userinfo, name: '個(gè)人信息', menuShow: true, meta:{requireAuth: true }},
         {path: '/editpwd', component: editpwd, name: '修改密碼', menuShow: true, meta:{requireAuth: true }}
         ]
         }
         ];
        
        const router = new Router({
         routes
        });
        
        

        備注:請注意路由中的 meta:{requireAuth: true },這個(gè)配置,主要為下面的驗(yàn)證做服務(wù)。

        if(to.meta.requireAuth),這段代碼意思就是說,如果requireAuth: true ,那就判斷用戶是否存在。

        如果存在,就繼續(xù)執(zhí)行下面的操作,如果不存在,就刪除客戶端的Cookie,同時(shí)頁面跳轉(zhuǎn)到登錄頁,代碼如下。

        //這個(gè)是請求頁面路由的時(shí)候會驗(yàn)證token存不存在,不存在的話會到登錄頁
        router.beforeEach((to, from, next) => {
         if(to.meta.requireAuth) {
         fetch('m/is/login').then(res => {
         if(res.errCode == 200) {
         next();
         } else {
         if(getCookie('session')) {
         delCookie('session');
         }
         if(getCookie('u_uuid')) {
         delCookie('u_uuid');
         }
         next({
         path: '/'
         });
         }
         });
         } else {
         next();
         }
        });
        export default router;


        聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

        文檔

        在Vue中如何使用Cookie操作實(shí)例

        在Vue中如何使用Cookie操作實(shí)例:大家好,由于公司忙著趕項(xiàng)目,導(dǎo)致有段時(shí)間沒有發(fā)布新文章了。今天我想跟大家談?wù)凜ookie的使用。同樣,這個(gè)Cookie的使用方法是我從公司的項(xiàng)目中抽出來的,為了能讓大家看懂,我會盡量寫詳細(xì)點(diǎn)。廢話少說,我們直接進(jìn)入正題。 一、安裝Cookie 在Vue2.
        推薦度:
        標(biāo)簽: 如何使用 操作 VUE
        • 熱門焦點(diǎn)

        最新推薦

        猜你喜歡

        熱門推薦

        專題
        Top
        主站蜘蛛池模板: 亚洲乱码精品久久久久..| 免费一看一级毛片人| 国产成人 亚洲欧洲| AV免费网址在线观看| 亚洲va在线va天堂成人| 成人免费视频一区二区| 亚洲日韩在线中文字幕第一页| 精品在线视频免费| 国产L精品国产亚洲区久久| 一个人免费观看www视频| 国产成人综合亚洲亚洲国产第一页| 亚洲一区精彩视频| 日韩高清免费观看| 亚洲精品视频免费观看| 国产亚洲一区二区在线观看| 无码国产精品一区二区免费式芒果| 亚洲视频手机在线| 四虎成人免费网址在线| 猫咪www免费人成网站| 精品国产_亚洲人成在线高清 | 美女黄频免费网站| 久久亚洲国产成人影院网站| 日本黄色动图免费在线观看| 亚洲无限乱码一二三四区| a级毛片视频免费观看| 亚洲精品高清视频| 成年女人看片免费视频播放器| 美女被艹免费视频| 亚洲AV无码一区东京热| 成人特黄a级毛片免费视频| 一道本不卡免费视频| 亚洲综合一区二区国产精品| 成人毛片免费播放| 亚欧国产一级在线免费| 亚洲卡一卡2卡三卡4麻豆| 免费二级毛片免费完整视频| 免费人成在线观看网站| 亚洲AV永久无码精品放毛片| 亚洲AV无码乱码国产麻豆穿越 | 99久久久国产精品免费牛牛四川| 亚洲一区二区三区丝袜|