路由跳轉css
三種方式:vue
$router.push / $router.go / router-link to
this.$router.push('/course'); this.$router.push({name: course}); //這個name是router.js裏面設置的name this.$router.go(-1); //頁面後退 this.$router.go(1); //前進 <router-link to="/course">課程頁</router-link> <router-link :to="{name: 'course'}">課程頁</router-link>
路由傳參python
第一種:jquery
router.js設置webpack
routes: [ // ... { path: '/course/:id/detail', //:id接收參數 name: 'course-detail', component: CourseDetail }, ]
跳轉 .vueios
<template> <router-link :to="`/course/${course.id}/detail`">{{ course.name }}</router-link> </template> <script> // ... goDetail() { this.$router.push(`/course/${this.course.id}/detail`); } </script>
接收 .vuegit
created() { let id = this.$route.params.id; }
第二種:github
router.js設置web
routes: [ // ... { path: '/course/detail', name: 'course-detail', component: CourseDetail }, ]
跳轉 .vueajax
<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; }
倉庫:vuex
倉庫配置:store.js
import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex); export default new Vuex.Store({ // 全局能夠訪問的變量 - 獲取值 // 組件內:this.$store.state.title state: { title: '主頁' }, // 全局能夠訪問的方法 - 修改值 // 組件內:this.$store.commit('updateTitle', '新值') mutations: { updateTitle (state, newValue) { state.title = newValue } }, actions: {} }) 賦值 this.$store.state.title = 'newTitle' this.$store.commit('setTitle', 'newTitle') 取值 console.log(this.$store.state.title)
vue-cookies插件 (設置cookies能夠使用)
安裝:在pycharm上面安裝
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
使用 (增刪改查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');
注意:cookies通常都是用來存儲token的
// 1) 什麼是token:安全認證的字符串 // 2) 誰產生的:後臺產生 // 3) 誰來存儲:後臺存儲(session表、文件、內存緩存),前臺存儲(cookie) // 4) 如何使用:服務器先生成反饋給前臺(登錄認證過程),前臺提交給後臺完成認證(須要登陸後的請求) // 5) 先後臺分離項目:後臺生成token,返回給前臺 => 前臺本身存儲,發送攜帶token請求 => 後臺完成token校驗 => 後臺獲得登錄用戶
先後臺交互:axios插件
這個相似以前講的ajax
安裝:也是在pycharm中安裝
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) });
跨域問題(同源策略)
>: pip install django-cors-headers 插件參考地址:https://github.com/ottoyiu/django-cors-headers/
# 註冊app INSTALLED_APPS = [ ... 'corsheaders' ] # 添加中間件 MIDDLEWARE = [ ... 'corsheaders.middleware.CorsMiddleware' ] # 容許跨域源 CORS_ORIGIN_ALLOW_ALL = True
產生跨域問題的緣由
// 後臺接收到前臺的請求,能夠接收前臺數據與請求信息,發現請求的信息不是自身服務器發來的請求,拒絕響應數據,這種狀況稱之爲 - 跨域問題(同源策略 CORS) // 致使跨域狀況有三種 // 1) 端口不一致 // 2) IP不一致 // 3) 協議不一致
element-ui插件 相似於bootstrap往裏面找各類樣式
安裝
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 複製粘貼
>: cnpm install jquery
const webpack = require("webpack"); module.exports = { configureWebpack: { plugins: [ new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery", "window.jQuery": "jquery", Popper: ["popper.js", "default"] }) ] } };
>: cnpm install bootstrap@3
import "bootstrap" import "bootstrap/dist/css/bootstrap.css"