Vue之路由跳转传参,插件安装与配置

路由跳转

this.$router.push(‘/course‘);
this.$router.push({name:course});

this.$router.go(-1);   //后退一页
this.$router.go(1);  // 前进一页

<router-link to = "/course">课程页</router-link>
<router-link  :to="{name:‘course‘}"> 课程页  </router-link>

路由传参

第一种

router.js

routers:[
    //...
    {
        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.$router.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.localSorage :永久存储数据库

2.sessionStorage:临时存储数据(刷新页面数据不重置,关闭再重新开启页面数据重置)

3.cookie:临时或永久存储数据(由过期事件决定)

4.vuex的仓库(store.js) :临时存储数据(刷新页面数据重置)

vuex的仓库(store.js)

store.js

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

赋值.vue

this.$store.state.title = ‘newTitle‘  //直接通过 state字典
this.$store.commit(‘setTitle‘, ‘newTitle‘)   //通过 mutations 中的属性方法

取值.vue

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

插件使用

vue-cookie插件

安装

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校验 =>后台得到登录用户

axios插件

安装

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(请求失败的回调函数)

此时前端与后端做数据交互时  会出现错误   这是 跨域问题

跨域问题(同源策略)

// 后台接收到前台的请求,可以接收前台数据与请求信息,发现请求的信息不是自身服务器发来的请求,拒绝响应数据,这种情况称之为 - 跨域问题(同源策略 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

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

原文地址:https://www.cnblogs.com/s686zhou/p/11668042.html

时间: 2024-10-07 23:42:45

Vue之路由跳转传参,插件安装与配置的相关文章

Vue ---- 组件文件分析 组件生命周期钩子 路由 跳转 传参

目录 Vue组件文件微微细剖 Vue组件生命周期钩子 Vue路由 1.touter下的index.js 2.路由重定向 3.路由传参数 补充:全局样式导入 路由跳转 1. router-view标签 2. router-link标签 3.逻辑跳转 this.$router 控制路由跳转 this.$route 控制路由数据 Vue组件文件微微细剖 组件在view 文件中创建 如果需要用到其他小组件可以 在 component文件中创建并导入 view文件下: <template> <di

vue 路由跳转传参

<li v-for="article in articles" @click="getDescribe(article.id)"> getDescribe(id) { // 直接调用$router.push 实现携带参数的跳转 this.$router.push({ path: `/describe/${id}`, }) this.$route.params.id 父组件中:通过路由属性中的name来确定匹配的路由,通过params来传递参数. this

vue具体页面跳转传参方式

1.写数据,可以使用".","[]",以及setItems(key,value);3种方式. 例如: localStorage.name = proe;//设置name为" proe " localStorage["name "] = " proe";//设置name为" proe ",覆盖上面的值 localStorage.setItem("name","

eclipse maven plugin 插件 安装 和 配置

环境准备: eclipse(Helios) 3.6 maven 3.0.4 maven3 安装: 安装 Maven 之前要求先确定你的 JDK 已经安装配置完成.Maven是 Apache 下的一个项目,目前最新版本是 3.0.4,我用的也是这个. 首先去官网下载 Maven:http://www.apache.org/dyn/closer.cgi/maven/binaries/apache-maven-3.0.4-bin.tar.gz 下载完成之后将其解压,我将解压后的文件夹重命名成 mave

eclipse maven plugin 插件 安装 和 配置(2)

eclipse maven plugin 插件 安装 和 配置(2) 就像上篇文章所说,折腾一会终于安装完成,终于松了一口气,不料再次打开eclipse时又有错误信息,在网上找了找,找了篇比较详细的,原文地址: http://www.sunchis.com/html/hsware/software/2011/1102/371.html 在Eclipse中安装了m2eclipse(maven插件),安装完成后重启Eclipse,出现下列警告:Please make sure the -vm opt

vue的路由跳转及传参(编程式导航)

1)直接在路由中传参    this.$router.push({ path: `/childPage/${id}`, }) 需要对应路由配置如下: { path: '/childPage/:id', name: 'childPage', component: childPage } 获取参数:this.$route.parames.id 2) 通过路由属性中的name来确定匹配的路由,通过params来传递参数 this.$router.push({ name: 'childPage', pa

Vue用router.push(传参)跳转页面,参数改变,跳转页面数据不刷新的解决办法

vue-router同路由$router.push不跳转一个简单解决方案 vue-router跳转一般是这么写: goPage(ParentDeptCode2,DeptCode2,hosName,hosId){ this.$router.push({ path:'/ChoiceTime', query:{ DeptCode:ParentDeptCode2, DeptCode2:DeptCode2, hosName:hosName, hosId:hosId } })} 但是当遇到,需要跳转同页面不

ionic简单路由及页面传参

1)页面跳转及传参方法 angular.module('app.routes', [])//routes路由模型 .config(function($stateProvider, $urlRouterProvider) { $stateProvider .state('page1', { url: '/page1',//路由地址 templateUrl: 'templates/page1.html',//实际模型文件 controller: 'page1Ctrl',//控制器 params:{a

vue2.0路由写法和传参

前置知识请戳这里 vue-routerCDN地址:https://unpkg.com/[email protected]/dist/vue-router.js vue-router下载地址:https://github.com/vuejs/vue-router/tree/dev/dist vue2.0路由基本写法 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title&