uni-app H5 页面 debug
uni-app H5 页面 debug
nvue + vue
-
nvue 登录页,不支持 H5 登录
-
nvue 不支持 H5 debug
solution
- 绕过 nvue 登录页, 直接重定向到 vue H5 页面
home.vue
<template>
<view>
</view>
</template>
<script>
export default {
onLoad() {
this.redirectUrl();
},
methods: {
// redirectUrl () {
// this.userInfo = uni.getStorageSync('userInfo');
// if (!!this.userInfo) {
// uni.redirectTo({
// url: '/pages/table/data/global/index',
// });
// } else {
// uni.redirectTo({
// url: '/pages/user/login/index',
// })
// }
// },
redirectUrl () {
uni.redirectTo({
url: '/pages/table/data/global/index',
});
}
}
}
</script>
<style>
</style>
- 内置浏览器
CORS bug
refs
©xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/14612125.html
未经授权禁止转载,违者必究!