zoukankan      html  css  js  c++  java
  • 再顾vue

    1. 项目初始化

      当我们的node_modules,也就是项目依赖的环境遭到破坏时,可以在pycharm中的Terminal框中输入  cnpm  install来进行恢复

    如图所示:

                            输入时的场景

                              恢复后的场景

    当我们需要重新构建项目环境时,可以按照上面方法做,在assets文件夹下建立css样式文件夹,设置全局样式,全局样式设置完之后,在main.js文件下进行全局样式的配置,这样就完成了项目的初始化

                            设置全局样式文件夹

                            设置全局样式

                              全局样式配置

    2. 路由跳转

    this.$router.push('/course')   // 页面跳转方式一
    this.$router.push({name: course})  // 页面跳转方式二
    this.$router.go(-1)  // js逻辑使用histroy,返回上一页
    this.$router.go(1)  // js逻辑使用histroy,前进一页
    <router-link to="/ course">课程页</router-link>  // 跳转到课程页
    <router-link : to="{name: 'course'}">课程页</router-link>  // 跳转到课程页
    

     

    3. 路由传参

      第一种: router.js

    routes: [
    	// ...
        {
            path: '/course/:id/detail',
            name: 'course-detail',
            component: CourseDetail
        },
    ]
    

      跳转.vue

    <template>
    	<!-- 标签跳转 -->
    	<router-link :to="`/course/${course.id}/detail`">{{ course.name }}</router-link>
    </template>
    <script>
    	// ...
        goDetail() {
            // 逻辑跳转
            this.$router.push(`/course/${this.course.id}/detail`);
        }
    </script>
    

      接收.vue

    created() {
        let id = this.$route.params.id;
    }
    

      

      第二种:

      router.js

    routes: [
    	// ...
        {
            path: '/course/detail',
            name: 'course-detail',
            component: CourseDetail
        },
    ]
    

      跳转.vue

    <template>
    	<!-- 标签跳转 -->
    	<router-link :to="{
                name: 'course-detail',
                query: {id: course.id}
            }">{{ course.name }}</router-link>
    </template>
    <script>
    	// ...
        goDetail() {
            // 逻辑跳转
            this.$router.push({
                name: 'course-detail',
                query: {
                    id: this.course.id
                }
            });
        }
    </script>
    

      接收.vue

    created() {
        let id = this.$route.query.id;
    }
    

      

    4. 完成跨组件传参的四种方式

    1) localStorage:永久存储数据
    2) sessionStorage:临时存储数据(刷新页面数据不重置,关闭再重新开启标签页数据重置)
    3) cookie:临时或永久存储数据(由过期时间决定)
    4) vuex的仓库(store.js):临时存储数据(刷新页面数据重置)
    

      

    5. vuex仓库插件

      store.js配置文件

    export default new Vuex.Store({
        state: {
            title: '默认值'
        },
        mutations: {
            // mutations 为 state 中的属性提供setter方法
            // setter方法名随意,但是参数列表固定两个:state, newValue
            setTitle(state, newValue) {
                state.title = newValue;
            }
        },
        actions: {}
    })
    

      在任意组件中给仓库变量赋值

    this.$store.state.title = 'newTitle'
    this.$store.commit('setTitle', 'newTitle')
    

      在任意组件中取仓库变量的值

    console.log(this.$store.state.title)
    

      

    6. vue-cookies插件

      安装:

    >: cnpm install vue-cookies
    

      main.js配置

    // 第一种
    import cookies from 'vue-cookies'  	// 导入插件
    Vue.use(cookies);					// 加载插件
    new Vue({
        // ...
        cookies,						// 配置使用插件原型 $cookies
    }).$mount('#app');
    
    // 第二种
    import cookies from 'vue-cookies'	// 导入插件
    Vue.prototype.$cookies = cookies;	// 直接配置插件原型 $cookies
    

      使用

    // 增(改): key,value,exp(过期时间)
    // 1 = '1s' | '1m' | '1h' | '1d'
    this.$cookies.set('token', token, '1y');
    
    // 查:key
    this.token = this.$cookies.get('token');
    
    // 删:key
    this.$cookies.remove('token');
    

      注: cookie一般都是用来存储token的

    1) 什么是token:安全认证的字符串
    2) 谁产生的:后台产生
    3) 谁来存储:后台存储(session表、文件、内存缓存),前台存储(cookie)
    4) 如何使用:服务器先生成反馈给前台(登陆认证过程),前台提交给后台完成认证(需要登录后的请求)
    5) 前后台分离项目:后台生成token,返回给前台 => 前台自己存储,发送携带token请求 => 后台完成token校验 => 后台得到登陆用户
    

      

    7. anios插件

      安装

    >: cnpm install axios
    

      main.js配置

    import axios from 'axios'	// 导入插件
    Vue.prototype.$axios = axios;	// 直接配置插件原型 $axios
    

      使用

    this.axios({
        url: '请求接口',
        method: 'get|post请求',
        data: {post等提交的数据},
        params: {get提交的数据}
    }).then(请求成功的回调函数).catch(请求失败的回调函数)
    

      案例

    // get请求
    this.$axios({
        url: 'http://127.0.0.1:8000/test/ajax/',
        method: 'get',
        params: {
            username: this.username
        }
    }).then(function (response) {
        console.log(response)
    }).catch(function (error) {
        console.log(error)
    });
    
    // post请求
    this.$axios({
        url: 'http://127.0.0.1:8000/test/ajax/',
        method: 'post',
        data: {
            username: this.username
        }
    }).then(function (response) {
        console.log(response)
    }).catch(function (error) {
        console.log(error)
    });
    

      

    8. 跨域问题

    后台接收到前台的请求,可以接收前台数据与请求信息,发现请求的信息不是自身服务器发来的请求,拒绝响应数据,这种情况称之为 - 跨域问题(同源策略 CORS)
    
    导致跨域情况有三种
    1) 端口不一致
    2) IP不一致
    3) 协议不一致
    
    Django如何解决 - django-cors-headers模块
    1) 安装:pip3 install django-cors-headers
    2) 注册:
    INSTALLED_APPS = [
    	...
    	'corsheaders'
    ]
    3) 设置中间件:
    MIDDLEWARE = [
    	...
    	'corsheaders.middleware.CorsMiddleware'
    ]
    4) 设置跨域:
    CORS_ORIGIN_ALLOW_ALL = True
    

      

    9. element-UI插件

      安装:

    >: cnpm i element-ui -S
    

      main.js配置

    import ElementUI from 'element-ui';
    import 'element-ui/lib/theme-chalk/index.css';
    Vue.use(ElementUI);
    

      使用:

    依照官网 https://element.eleme.cn/#/zh-CN/component/installation api
    

      

    生前无需久睡,死后自会长眠,努力解决生活中遇到的各种问题,不畏将来,勇敢面对,加油,你是最胖的,哈哈哈
  • 相关阅读:
    上周热点回顾(7.29-8.4)团队
    云计算之路:AWS, Azure, Aliyun, UCloud提供的Windows操作系统团队
    上周热点回顾(7.22-7.28)团队
    我的MYSQL学习心得(推荐)
    深度学习笔记之使用Faster-Rcnn进行目标检测 (实践篇)
    深度学习笔记之使用Faster-Rcnn进行目标检测 (原理篇)
    深度学习笔记之基于R-CNN的物体检测
    深度学习笔记之目标检测算法系列(包括RCNN、Fast RCNN、Faster RCNN和SSD)
    深度学习笔记之神经网络、激活函数、目标函数和深度的初步认识
    深度学习笔记之CNN(卷积神经网络)基础
  • 原文地址:https://www.cnblogs.com/panshao51km-cn/p/11657898.html
Copyright © 2011-2022 走看看