vue + axios + vue-router + vuex + ElementUI
只有当实例被创建时 data 中存在的属性才是响应式的,Vue 不能检测对象属性的添加或删除;
可以使用 Vue.set(object, key, value) 方法向嵌套对象添加响应式属性
Vue.set(vm.userProfile, 'age', 27)
this.$set(this.transportAddData.serviceOrderList[a].serviceOrderItems[i], 'deletePoundIds', [])
复制代码
vue 数据与方法
vue 对象更改检测注意事项
Vue 不能检测以下变动的数组:
vue 数组更新检测
持续触发某个事件可以用函数的节流和防抖来做性能优化
//防抖
function(){
...
clearTimeout(timeoutId);
timeoutId = setTimeout(function () {
console.log('content', content);
player(content.msgTypeId, comId)
}, 500);
...
}
// 节流
var canRun = true;
document.getElementById("throttle").onscroll = function(){
if(!canRun){
// 判断是否已空闲,如果在执行中,则直接return
return;
}
canRun = false;
setTimeout(function(){
console.log("函数节流");
canRun = true;
}, 300);
};
复制代码
javaScript的Throttling(节流)和Debouncing(防抖)
在下次 DOM 更新循环结束之后执行延迟回调。在修改数据之后立即使用这个方法,获取更新后的 DOM。
get() {
this.$http.get('/api/article').then(function (res) {
this.list = res.data.data.list
// ref list 引用了ul元素,我想把第一个li颜色变为红色
document.querySelectorAll('li')[0].style.color = 'red' //这里会报错-,因为还没有 li
this.$nextTick( ()=> {
document.querySelectorAll('li')[0].style.color = 'red'
})
})
},
复制代码
Vue.nextTick 的原理和用途
谷歌浏览器(Chrome 66)音频自动播放报错
DOMException: play() failed because the user didn’t interact with the document first.
复制代码
解决方案:AudioContext
// Chrome
request.get('/baseConfig/messageAudio/play', {
params: {
"comId": Cookies.get('comId'),
"msgTypeId": id
},
responseType: 'arraybuffer' // 这里需要设置xhr response的格式为arraybuffer
})
.then(req => {
...
let context = new (window.AudioContext || window.webkitAudioContext)();
context.decodeAudioData(req.data, decode => play(context, decode));
function play (context, decodeBuffer) {
sourceadio = context.createBufferSource();
sourceadio.buffer = decodeBuffer;
sourceadio.connect(context.destination);
// 从0s开始播放
sourceadio.start(0);
}
...
})
复制代码
Chrome 66禁止声音自动播放之后
AudioContext
AudioContext.decodeAudioData()
相同点:能够修改state里的变量,并且是响应式的(能触发视图更新)
不同点: 若将vue创建 store 的时候传入 strict: true, 开启严格模式,那么任何修改state的操作,只要不经过 mutation的函数,vue就会报如下错
throw error : [vuex] Do not mutate vuex store state outside mutation handlers。
复制代码
使用commit提交到mutation修改state的优点:vuex能够记录每一次state的变化记录,保存状态快照,实现时间漫游/回滚之类的操作。
dispatch 和 commit的区别在于:
使用dispatch是异步操作, commit是同步操作,
所以 一般情况下,推荐直接使用commit,即 this.$store.commit(commitType, payload),以防异步操作会带来的延迟问题。
vuex strict
vuex Mutation
vuex actions
const store = new Vuex.Store({
state: {
count: 0
},
mutations: {
increment (state) {
state.count++
}
},
actions: {
increment (context) {
context.commit('increment')
}
}
})
复制代码
==vuex中的state本质上是没有template的隐藏的vue组件。==
vuex工作原理详解
Edge 41.16299.15.0 post请求会自动转为get
microsoft-edge/platform/issues
vue 使用axios 在EDGE浏览器上面post请求变成了get请求
场景:每次请求在拦截器中添加token,后台判断token是否过期;当进入一个页面时触发多次请求,且正好token已经过期。这个时候需要第一次请求完成之后知道token已经过期则弹出提示、页面跳转到登录、停止之后的请求;否则会因为多次请求和axios响应拦截而多次弹框提示。
// 请求拦截中 添加 cancelToken
axios.interceptors.request.use(config => {
config.cancelToken = store.source.token
return config
}, err => {
return Promise.reject(err)
})
// 路由跳转中进行判断
router.beforeEach((to, from, next) => {
const CancelToken = axios.CancelToken
store.source.cancel && store.source.cancel()
store.source = CancelToken.source()
next()
})
//sort文件/
state: {
source: {
token: null,
cancel: null
}
}
复制代码
axios api
路由变化时使用axios取消所有请求
vue项目中 axios请求拦截器与取消pending请求功能
存在问题: 如果 token过期提示弹框为二次确认弹框,再次确认之后才会进行页面跳转,那么在点击确认之前,页面中之前的请求还是会继续进行;
解决方案:给弹窗添加全局状态,根据状态判断是否需要弹出弹框
CORS跨域
CORS需要浏览器和服务器同时支持。目前,所有浏览器都支持该功能,==IE浏览器不能低于IE10。==
浏览器将CORS请求分成两类:简单请求(simple request)和非简单请求(not-so-simple request)。
简单请求不会触发 CORS 预检请求。
当请求满足下述任一条件时,即为非简单请求:
HTTP访问控制(CORS)
非简单请求,会在正式通信之前,增加一次HTTP OPTIONS方法发起的查询请求,称为"预检"请求(preflight)。以获知服务器是否允许该实际请求。 "预检请求“的使用,可以避免跨域请求对服务器的用户数据产生未预期的影响。
==该方法不会对服务器资源产生影响==
Access-Control-Max-Age: //单位是秒。
复制代码
表示 preflight request (预检请求)的返回结果(即 Access-Control-Allow-Methods 和Access-Control-Allow-Headers 提供的信息) 可以被缓存多久
push会向history添加新的记录,replace只是替换掉原来的记录,不会添加新的记录; 这就导致了用replace方法跳转的页面是无法回到之前的页面的;(类似window.history)
vue Router 编程式的导航
为了提升页面加载速度,实现按需加载,也就是当路由访问时才加载对应组件,我们可以结合vue的异步组件和webpack的代码分割功能来实现路由的懒加载。
{
path: '/iov/login',
name: '登录',
component: resolve => require(['@/views/login/login'], resolve),
},
{
path:'/iov/organization',
name:'组织管理',
component:() => import('@/views/enterprise/organization')
}
复制代码
vue Router 路由懒加载
vue 异步组件
vue + vue-router 懒加载 import / resolve+require
给表单添加不同的 ref (REFNAME),如果有相同的ref 会导致残留验证提示清除失败
this.dialogTranspor = true
//弹窗打开后 dom 没有生成,所有要用 this.$nextTick
this.$nextTick(function () {
this.$refs.REFNAME.resetFields();
})
复制代码
场景:列表页在跳到详情或其他页面后再返回列表页,无法正常显示对应页数(页码数放在state中),但请求的数据时正常的;
解决方案:页码数、总页数必须要在同一个对象中,否则当前页码数不能正常显示
data() {
return {
//完成查询条件
searchComplate: {
"comId": Cookies.get('comId'),
"transportOrderCode": null,
"orderCode": null,
"customerId": null,
"abnormal": 2,
"startTime": null,
"endTime": null,
"pageNum": 1,
"pageSize": 20,
total: 0,
currentRow: '',
dataArea: ['', ''],
activeName: '',
expands: []
},
}
}
复制代码
...
复制代码
作者:liy_y
链接:https://juejin.im/post/5c70e7786fb9a049f571c504
来源:掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。