uniapp使用web-view 加载页面时返回没有效果
学习过程
·
app 基座调试时 一直提示 mui is not defined
只需要在对应的vue 页面中加上
onReady() {
// #ifdef APP-PLUS
var currentWebview = this.$scope.$getAppWebview().children()[0];
//监听注入的js
currentWebview.addEventListener("loaded", function() {
currentWebview.evalJS(
"mui.init({keyEventBind: {backbutton: false }});"
);
});
// #endif
},
确实好用!
更多推荐
已为社区贡献1条内容
所有评论(0)