Vue基础第五天之“配置代理、插槽、vuex、四个map方法、路由”

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=\, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <p>
        <!-- 
            一、vue脚手架配置代理
            1.安装:npm install --save axios 
            2.服务器地址打开的是get请求的地址
            3.开启服务器方法:在文件地址处输入cmd,打开cmd终端,在目录下面输入nod server1,就可以开启服务器
            方法一

            ​	在vue.config.js中添加如下配置:

            ```js
            devServer:{
            proxy:"http://localhost:5000"
            }
            ```

            说明:

            1. 优点:配置简单,请求资源时直接发给前端(8080)即可。
            2. 缺点:不能配置多个代理,不能灵活的控制请求是否走代理。
            3. 工作方式:若按照上述配置代理,当请求了前端不存在的资源时,那么该请求会转发给服务器 (优先匹配前端资源)

            ### 方法二
            ​	编写vue.config.js配置具体代理规则:

            ```js
            module.exports = {
                devServer: {
                proxy: {
                '/api1': {// 匹配所有以 '/api1'开头的请求路径
                    target: 'http://localhost:5000',// 代理目标的基础路径
                    changeOrigin: true,
                    pathRewrite: {'^/api1': ''}//重新路径-正则,匹配所有以atguigu开头的
                },
                '/api2': {// 匹配所有以 '/api2'开头的请求路径
                    target: 'http://localhost:5001',// 代理目标的基础路径
                    changeOrigin: true,
                    pathRewrite: {'^/api2': ''}
                }
                }
            }
            }
            /*
            changeOrigin设置为true时,服务器收到的请求头中的host为:localhost:5000
            changeOrigin设置为false时,服务器收到的请求头中的host为:localhost:8080
            changeOrigin默认值为true
            */
            ```
            说明:

            1. 优点:可以配置多个代理,且可以灵活的控制请求是否走代理。
            2. 缺点:配置略微繁琐,请求资源时必须加前缀。

            二、搜索案列
            1.引用bootstrap.css的方式,有2种
                1>.推荐 在pulic文件中放置文件,在html文件中去引用
                2>.不推荐 这种存在一个问题,font字体如果缺少,会报错 在assets文件中放置文件,在vue文件中去引用 import '../assets/css/bootstrap.css'
            2.关于在''号中,添加动态的值,比如:'https://api.github.com/search/users?q=text'text如果是动态的要怎么处理
            (`https://api.github.com/search/users?q=${this.keyWord}`)可以'模板字符串'解决-常用
            3.ES6合并,通过比较2个数据,进行合并this.info = {...this.info,...dataObj}-常用
            4.子组件接收多个数据,可以使用this.info = value 原理是this._data.info = value
            
            三、vue-resource(了解即可)
            通过XMLHttpRequrest或JSONP技术实现异步加载服务端数据
            注意:vue2.0之后,就不再对vue-resource更新,而是推荐使用axios
            1.安装:npm i vue-resource
            2.使用:在this身上会有$http,直接用 this.$http替换axios.get就可以了
            

            四、插槽
            1. 作用:让父组件可以向子组件指定位置插入html结构,也是一种组件间通信的方式,适用于 <strong style="color:red">父组件 ===> 子组件</strong> 。

            2. 分类:默认插槽、具名插槽、作用域插槽

            3. 使用方式:

            1. 默认插槽:

                ```vue
                父组件中:
                        <Category>
                            <div>html结构1</div>
                        </Category>
                子组件中:
                        <template>
                            <div>
                                定义插槽 
                                <slot>插槽默认内容...</slot>
                            </div>
                        </template>
                ```

            2. 具名插槽:

                ```vue
                父组件中:
                        <Category>
                            <template slot="center">
                                <div>html结构1</div>
                            </template>
                
                            <template v-slot:footer>
                                <div>html结构2</div>
                            </template>
                        </Category>
                子组件中:
                        <template>
                            <div>
                                定义插槽 -
                                <slot name="center">插槽默认内容...</slot>
                                <slot name="footer">插槽默认内容...</slot>
                            </div>
                        </template>
                ```

            3. 作用域插槽:

                1. 理解:<span style="color:red">数据在组件的自身,但根据数据生成的结构需要组件的使用者来决定。</span>(games数据在Category组件中,但使用数据所遍历出来的结构由App组件决定)

                2. 具体编码:

                    ```vue
                    父组件中:
                            <Category>
                                <template scope="scopeData">
                                    生成的是ul列表 
                                    <ul>
                                        <li v-for="g in scopeData.games" :key="g">{{g}}</li>
                                    </ul>
                                </template>
                            </Category>
                    
                            <Category>
                                <template slot-scope="scopeData">
                                生成的是h4标题 
                                    <h4 v-for="g in scopeData.games" :key="g">{{g}}</h4>
                                </template>
                            </Category>
                    子组件中:
                            <template>
                                <div>
                                    <slot :games="games"></slot>
                                </div>
                            </template>
                            
                            <script>
                                export default {
                                    name:'Category',
                                    props:['title'],
                                    //数据在子组件自身
                                    data() {
                                        return {
                                            games:['红色警戒','穿越火线','劲舞团','超级玛丽']
                                        }
                                    },
                                }
                            </script>
                    ```
            ```
            
            ```
            五、vuex
            1.概念

            ​在Vue中实现集中式状态(数据)管理的一个Vue插件,对vue应用中多个组件的共享状态进行集中式的管理(读/写),也是一种组件间通信的方式,且适用于任意组件间通信。

            2.何时使用?

            ​多个组件需要共享数据时

            3.搭建vuex环境
            1>. 创建文件:```src/store/index.js```

            ```js
            //引入Vue核心库
            import Vue from 'vue'
            //引入Vuex
            import Vuex from 'vuex'
            //应用Vuex插件
            Vue.use(Vuex)
            
            //准备actions对象——响应组件中用户的动作
            const actions = {}
            //准备mutations对象——修改state中的数据
            const mutations = {}
            //准备state对象——保存具体的数据
            const state = {}
            
            //创建并暴露store
            export default new Vuex.Store({
                actions,
                mutations,
                state
            })
            ```

            2>. 在```main.js```中创建vm时传入```store```配置项

            ```js
            ......
            //引入store
            import store from './store'
            ......
            
            //创建vm
            new Vue({
                el:'#app',
                render: h => h(App),
                store
            })
            ```

            4.基本使用

            1>. 初始化数据、配置```actions```、配置```mutations```,操作文件```store.js```

            ```js
            //引入Vue核心库
            import Vue from 'vue'
            //引入Vuex
            import Vuex from 'vuex'
            //引用Vuex
            Vue.use(Vuex)
            
            const actions = {
                //响应组件中加的动作
                jia(context,value){
                    // console.log('actions中的jia被调用了',miniStore,value)
                    context.commit('JIA',value)
                },
            }
            
            const mutations = {
                //执行加
                JIA(state,value){
                    // console.log('mutations中的JIA被调用了',state,value)
                    state.sum += value
                }
            }
            
            //初始化数据
            const state = {
                sum:0
            }
            
            //创建并暴露store
            export default new Vuex.Store({
                actions,
                mutations,
                state,
            })
            ```

            2>. 组件中读取vuex中的数据:```$store.state.sum```

            3>. 组件中修改vuex中的数据:```$store.dispatch('action中的方法名',数据)``` 或 ```$store.commit('mutations中的方法名',数据)```

            4>.备注:若没有网络请求或其他业务逻辑,组件中也可以越过actions,即不写```dispatch```,直接编写```commit```
    
            
            六、vuex求和案列
            1.v-model.number="n"写法中的.number意思是转为Number类型
            2.注意:安装npm i vuex@3的时候要vue2.0要安装3版本的
            3.含义:
            const actions = {}/准备actions对象——响应组件中用户的动作
            const mutations = {}//准备mutations对象——修改state中的数据
            const state = {}//准备state对象——保存具体的数据
            4.调用:
            this.$store.dispatch('jia',this.n)//读取actions的事件
			this.$store.commit('JIA',this.n)//修改mutations的事件
            5.actions的过程,可以看-调用-的情况,是否写入,
            如果:是this.$store.dispatch('jia',this.n)则需要写
            否则直接写mutations的过程

            七、getters的使用
            1. 概念:当state中的数据需要经过加工后再使用时,可以使用getters加工。
            2. 在```store.js```中追加```getters```配置
            ```js
            ......
            const getters = {
                bigSum(state){
                    return state.sum * 10
                }
            }
            //创建并暴露store
            export default new Vuex.Store({
                ......
                getters
            })
            ```
            3. 组件中读取数据:```$store.getters.bigSum```


            八、四个map方法的使用
            1.注意:
                1>对象中{ 还需要添加一个对象{需要怎么操作呢?} },可以{...{对象}},可以把对象里面的方法,展示出来
                2>...mapState({he:'sum',xuexiao:'school',xueke:'subject'})这里的he:'sum'
                he其实是'he':'sum' he是方法名 sum是state中定义的值
                3>.使用数组的方法可以更简单...mapState(['sum','school','subject']),sum必须是state中定义的值,不然是错误的
            2. <strong>mapState方法:</strong>用于帮助我们映射```state```中的数据为计算属性

            ```js
            computed: {
                //借助mapState生成计算属性:sum、school、subject(对象写法)
                    ...mapState({sum:'sum',school:'school',subject:'subject'}),
                        
                //借助mapState生成计算属性:sum、school、subject(数组写法)
                ...mapState(['sum','school','subject']),
            },
            ```

            3. <strong>mapGetters方法:</strong>用于帮助我们映射```getters```中的数据为计算属性

            ```js
            computed: {
                //借助mapGetters生成计算属性:bigSum(对象写法)
                ...mapGetters({bigSum:'bigSum'}),
            
                //借助mapGetters生成计算属性:bigSum(数组写法)
                ...mapGetters(['bigSum'])
            },
            ```

            4. <strong>mapActions方法:</strong>用于帮助我们生成与```actions```对话的方法,即:包含```$store.dispatch(xxx)```的函数

            ```js
            methods:{
                //靠mapActions生成:incrementOdd、incrementWait(对象形式)
                ...mapActions({incrementOdd:'jiaOdd',incrementWait:'jiaWait'})
            
                //靠mapActions生成:incrementOdd、incrementWait(数组形式)
                ...mapActions(['jiaOdd','jiaWait'])
            }
            ```

            5. <strong>mapMutations方法:</strong>用于帮助我们生成与```mutations```对话的方法,即:包含```$store.commit(xxx)```的函数

            ```js
            methods:{
                //靠mapActions生成:increment、decrement(对象形式)
                ...mapMutations({increment:'JIA',decrement:'JIAN'}),
                
                //靠mapMutations生成:JIA、JIAN(对象形式)
                ...mapMutations(['JIA','JIAN']),
            }
            ```

            > 备注:mapActions与mapMutations使用时,若需要传递参数需要:在模板中绑定事件时传递好参数,否则参数是事件对象。


            
            九、多组件共享数据
            1.意思就是说vuex中定义的变量和事件,可以在多个组件中共享,去使用

            十、模块化+命名空间
            1. 目的:让代码更好维护,让多种数据分类更加明确。

            2. 修改```store.js```

            ```javascript
            const countAbout = {
                namespaced:true,//开启命名空间
                state:{x:1},
                mutations: { ... },
                actions: { ... },
                getters: {
                bigSum(state){
                    return state.sum * 10
                }
                }
            }
            
            const personAbout = {
                namespaced:true,//开启命名空间
                state:{ ... },
                mutations: { ... },
                actions: { ... }
            }
            
            const store = new Vuex.Store({
                modules: {
                countAbout,
                personAbout
                }
            })
            ```

            3. 开启命名空间后,组件中读取state数据:

            ```js
            //方式一:自己直接读取
            this.$store.state.personAbout.list
            //方式二:借助mapState读取:
            ...mapState('countAbout',['sum','school','subject']),
            ```

            4. 开启命名空间后,组件中读取getters数据:

            ```js
            //方式一:自己直接读取
            this.$store.getters['personAbout/firstPersonName']
            //方式二:借助mapGetters读取:
            ...mapGetters('countAbout',['bigSum'])
            ```

            5. 开启命名空间后,组件中调用dispatch

            ```js
            //方式一:自己直接dispatch
            this.$store.dispatch('personAbout/addPersonWang',person)
            //方式二:借助mapActions:
            ...mapActions('countAbout',{incrementOdd:'jiaOdd',incrementWait:'jiaWait'})
            ```

            6. 开启命名空间后,组件中调用commit

            ```js
            //方式一:自己直接commit
            this.$store.commit('personAbout/ADD_PERSON',person)
            //方式二:借助mapMutations:
            ...mapMutations('countAbout',{increment:'JIA',decrement:'JIAN'}),
            ```
    
            
            十、路由

            1. 理解: 一个路由(route)就是一组映射关系(key - value),多个路由需要路由器(router)进行管理。
            2. 前端路由:key是路径,value是组件。

            3.基本使用

            1>. 安装vue-router,vue2安装命令:```npm install --save vue-router@3```

            2>. 应用插件:```Vue.use(VueRouter)```

            3>. 编写router配置项:

            ```js
            //引入VueRouter
            import VueRouter from 'vue-router'
            //引入Luyou 组件
            import About from '../components/About'
            import Home from '../components/Home'
            
            //创建router实例对象,去管理一组一组的路由规则
            const router = new VueRouter({
                routes:[
                    {
                        path:'/about',
                        component:About
                    },
                    {
                        path:'/home',
                        component:Home
                    }
                ]
            })
            
            //暴露router
            export default router
            ```

            4. 实现切换(active-class可配置高亮样式)

            ```vue
            <router-link active-class="active" to="/about">About</router-link>
            ```

            5. 指定展示位置

            ```vue
            <router-view></router-view>
            ```

            十一、几个注意点
            1. 路由组件通常存放在```pages```文件夹,一般组件通常存放在```components```文件夹。
            2. 通过切换,“隐藏”了的路由组件,默认是被销毁掉的,需要的时候再去挂载。
            3. 每个组件都有自己的```$route```属性,里面存储着自己的路由信息。
            4. 整个应用只有一个router,可以通过组件的```$router```属性获取到。

            十二、多级路由(多级路由)路由的嵌套
            1. 配置路由规则,使用children配置项:
            ```js
            routes:[
                {
                    path:'/about',
                    component:About,
                },
                {
                    path:'/home',
                    component:Home,
                    children:[ //通过children配置子级路由
                        {
                            path:'news', //此处一定不要写:/news
                            component:News
                        },
                        {
                            path:'message',//此处一定不要写:/message
                            component:Message
                        }
                    ]
                }
            ]
            ```

            2. 跳转(要写完整路径):

            ```vue
            <router-link to="/home/news">News</router-link>
            ```
        
            十三.路由的query参数
            1. 传递参数

            ```vue
            跳转并携带query参数,to的字符串写法 
            <router-link :to="/home/message/detail?id=666&title=你好">跳转</router-link>
                            
            跳转并携带query参数,to的对象写法 
            <router-link 
                :to="{
                    path:'/home/message/detail',
                    query:{
                    id:666,
                        title:'你好'
                    }
                }"
            >跳转</router-link>
            ```

            2. 接收参数:

            ```js
            $route.query.id
            $route.query.title
            ```

            十四、命名路由
            1. 作用:可以简化路由的跳转。
            2. 如何使用
            1>. 给路由命名:

                ```js
                {
                    path:'/demo',
                    component:Demo,
                    children:[
                        {
                            path:'test',
                            component:Test,
                            children:[
                                {
                                        name:'hello' //给路由命名
                                    path:'welcome',
                                    component:Hello,
                                }
                            ]
                        }
                    ]
                }
                ```

            2>. 简化跳转:

                ```vue
                简化前,需要写完整的路径 
                <router-link to="/demo/test/welcome">跳转</router-link>
                
                简化后,直接通过名字跳转
                <router-link :to="{name:'hello'}">跳转</router-link>
                
                简化写法配合传递参数 
                <router-link 
                    :to="{
                        name:'hello',
                        query:{
                            id:666,
                            title:'你好'
                        }
                    }"
                >跳转</router-link>
                ```
            
            十五、路由的params参数
            1. 配置路由,声明接收params参数

            ```js
            {
                path:'/home',
                component:Home,
                children:[
                    {
                        path:'news',
                        component:News
                    },
                    {
                        component:Message,
                        children:[
                            {
                                name:'xiangqing',
                                path:'detail/:id/:title', //使用占位符声明接收params参数
                                component:Detail
                            }
                        ]
                    }
                ]
            }
            ```
            2. 传递参数

            ```vue
            跳转并携带params参数,to的字符串写法 
            <router-link :to="/home/message/detail/666/你好">跳转</router-link>
                            
            跳转并携带params参数,to的对象写法 
            <router-link 
                :to="{
                    name:'xiangqing',
                    params:{
                        id:666,
                        title:'你好'
                    }
                }"
            >跳转</router-link>
            ```
            > 特别注意:路由携带params参数时,若使用to的对象写法,则不能使用path配置项,必须使用name配置!
            3. 接收参数:

            ```js
            $route.params.id
            $route.params.title
   ```      
        十六、路由的props配置
        ​	作用:让路由组件更方便的收到参数

        ```js
        {
            name:'xiangqing',
            path:'detail/:id',
            component:Detail,

            //第一种写法:props值为对象,该对象中所有的key-value的组合最终都会通过props传给Detail组件
            // props:{a:900}

            //第二种写法:props值为布尔值,布尔值为true,则把路由收到的所有params参数通过props传给Detail组件
            // props:true
            
            //第三种写法:props值为函数,该函数返回的对象中每一组key-value都会通过props传给Detail组件
            props(route){
                return {
                    id:route.query.id,
                    title:route.query.title
                }
            }
        }
        ```
        十七、<router-link>的replace属性
        1. 作用:控制路由跳转时操作浏览器历史记录的模式
        2. 浏览器的历史记录有两种写入方式:分别为```push```和```replace```,```push```是追加历史记录,```replace```是替换当前记录。路由跳转时候默认为```push```
        3. 如何开启```replace```模式:```<router-link replace .......>News</router-link>```


        十八、编程式路由导航(路由的跳转)
        1. 作用:不借助```<router-link> ```实现路由跳转,让路由跳转更加灵活
        2. 具体编码:
        ```js
        //$router的两个API
        this.$router.push({
            name:'xiangqing',
                params:{
                    id:xxx,
                    title:xxx
                }
        })
        
        this.$router.replace({
            name:'xiangqing',
                params:{
                    id:xxx,
                    title:xxx
                }
        })
        this.$router.forward() //前进
        this.$router.back() //后退
        this.$router.go() //可前进也可后退
        ```

        十九、缓存路由组件
        1. 作用:让不展示的路由组件保持挂载,不被销毁。
        2. 具体编码:
        ```vue
        <keep-alive include="News"> 
            <router-view></router-view>
        </keep-alive>
        ```
        3.因为router-view是会有多个,include="News"不出现在include里的就不去缓存,这里的News写的是组件名


        -->
    </p>
</body>
</html>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值