2020年5月19日 星期二
昨天的报错已经得到解决了,vue最新版本node_scss下载出错终于找到了,主要原因呢就是没有配置python的环境,昨天晚上搞到快两点了才弄出来,不过还是挺激动的。真是皇天不负有心人有心人呢。
今天呢主要就是复习了Vue的路由,还有就是在Vue中使用SVG的图片。axios的封装配置;
先说说svg吧》
SVG是一种图像文件格式,是由(W3C)联盟进行开发的。严格来说应该是一种开放标准的矢量图形语言,
可让你设计激动人心的、高分辨率的Web图形页面。用户可以直接用代码来描绘图像,可以用任何文
字处理工具打开SVG图像,通过改变部分代码来使图像具有交互功能,并可以随时插入到HTML中通过浏览器来观看。
svg的使用方法:
1. 通过img引入svg
2. 通过直接插入svg
<svg t="1589851025817" class="icon search" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2154" width="200" height="200"><path d="M908.6 883.1l-155-155c28.1-30.9 50.5-66 66.8-104.4 19.3-45.6 29-94 29-143.9 0-49.9-9.8-98.3-29-143.9-18.6-44-45.3-83.5-79.2-117.5-33.9-33.9-73.5-60.6-117.5-79.2-45.6-19.3-94-29-143.9-29-49.9 0-98.3 9.8-143.9 29-44 18.6-83.5 45.3-117.5 79.2s-60.6 73.5-79.2 117.5c-19.3 45.6-29 94-29 143.9 0 49.9 9.8 98.3 29 143.9 18.6 44 45.3 83.5 79.2 117.5s73.5 60.6 117.5 79.2c45.6 19.3 94 29 143.9 29 49.9 0 98.3-9.8 143.9-29 38.5-16.3 73.6-38.7 104.4-66.8l155 155c3.5 3.5 8.1 5.3 12.7 5.3s9.2-1.8 12.7-5.3c7.1-7.1 7.1-18.5 0.1-25.5z m-428.8-69.7c-184 0-333.6-149.7-333.6-333.6 0-184 149.7-333.6 333.6-333.6 184 0 333.6 149.7 333.6 333.6 0 184-149.6 333.6-333.6 333.6z" p-id="2155"></path></svg>
还可以通过css样式修改svg的大小,颜色
.search {
width:50px;
fill:#f00;
}
vue路由
//路由懒加载
const Page = ()=>import (路径)
{
path:‘/page’,
name:‘/page’,
component:Page
}
路由的高亮显示
自定义:
router-link-active { //高亮样式 }
自定义高亮类名:
需要在实例化路由中添加:
const router = new VueRouter({
routes,
linkActiveClass: 'active' //添加自定义类名
});
数据请求
axios封装:基本不用封装,只是对请求的接口地址,超时,报错处理
安装axios
npm i axios -S
axios官方github仓库地址:https://github.com/axios/axios
简洁语法:
//get语法语法
axios.get('/user', {
params: {
ID: 12345
}
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
})
//post请求语法
axios.post('/user', {
firstName: 'Fred',
lastName: 'Flintstone'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
function getUserAccount() {
return axios.get('/user/12345');
}
function getUserPermissions() {
return axios.get('/user/12345/permissions');
}
//可以用axios同时请求多个接口,类似于Promise.all()
axios.all([getUserAccount(), getUserPermissions()])
.then(axios.spread(function (acct, perms) {
// Both requests are now complete
}));
axios通过配置对象来请求数据
//post请求
axios({
url:'接口地址',
baseURL:‘接口默认前缀地址’
method:'post',
// data:{ }, //传参,注意:post请求有可能会用qs库去转换
data:qs.stringify(obj)
headers:{'content-tpye':'application/x-www-form-urlencoded',......}, //请求头配置
});
例如:
import qs from 'qs';
const data = { 'bar': 123 };
const options = {
method: 'POST',
headers: { 'content-type': 'application/x-www-form-urlencoded' },
data: qs.stringify(data),
url,
};
axios(options);
//get请求
axios({
url:'接口地址',
method:'get',
params:{ }, //传参
headers:{'content-tpye':'x-www-form-urlencoded',......}, //请求头配置
});
axios的默认配置
axios.defaults.baseURL = '默认接口域名url';
axios.defaults.headers['x-token'] = token值; //添加token
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
创建axios实例
const instance = axios.create({
baseURL: '默认接口域名url',
timeout:2500
});
//instance.defaults.timeout = 2500; //给实例添加默认超时时间
5.axios拦截器
// 添加请求拦截
axios.interceptors.request.use(function (config) {
//发送成功请求
config.headers['x-token']=getToken()
return config;
}, function (error) {
//发送错误请求的拦截
return Promise.reject(error);
});
// 添加响应拦截
axios.interceptors.response.use(function (res) {
//成功返回
if(res.code===2000) {
}
if(res.code===5000) {
Tosst({
title:'登录超时'
})
router.push({
path:'/login'
})
}
return res;
}, function (error) {
//失败返回
return Promise.reject(error);
});