uni app
是基于 vue
的,所以弹出层大概率也是数据驱动的,盲猜弹出之前是 beforeUpdate
,但是 beforeUpdate
触发条件过多,需要费点事来辨别是不是在 popup
。
一个万能的、不用探究其原理的写法就是覆盖它的 open
方法:
const originOpen = this.$refs.popup.open;
this.$refs.popup.open = function(...args){
// 在这里设置已选项
return originOpen.bind(this)(...args);
};
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…