</template>
<script>
import * as storage from '@/utils/storage.js'
import config from '@/utils/config.js'
export default {
data() {
return {
webviewSrc: ${config.gameHtmlRoot}/game/entry/?token=${storage.getToken() || ''}
}
},
}
</script>
<style>
.webview {
flex: 1;
}
</style>
2 个回复
DCloud_UNI_OttoJi - 日常回复 uni-app/x 问题,如果艾特我没看到,请主动私信
开发阶段是否正常,提供一个线上的网址我测试,并提供 vue 和 HBuilderX 依赖版本
BoredApe - 有问题就会有答案。
直接使用
file://
引入本地页面会出现跨域问题,需要在应用内开一个服务。可以参考一下《网赚游戏》中首页使用web-view
的方式来解决跨域问题。iOS
在manifest.json
中开启miniserve
,安卓不需要特殊配置试试这种方式能否解决问题。