没什么昵称
没什么昵称
  • 发布:2022-12-04 14:37
  • 更新:2023-07-21 17:10
  • 阅读:329

【报Bug】unapp开启js原生混淆白屏vue饮用common目录的js文件

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Mac

PC开发环境操作系统版本号: 12.6.1

HBuilderX类型: 正式

HBuilderX版本号: 3.6.5

手机系统: iOS

手机系统版本号: iOS 16

手机厂商: 苹果

手机机型: iphonexs

页面类型: vue

vue版本: vue3

打包方式: 云端

项目创建方式: HBuilderX

示例代码:

<template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{title}}</text>
</view>
</view>
</template>

<script>
import test from "@/common/test.js"
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
this.title = test();
},
methods: {

    }  
}  

</script>

<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.logo {  
    height: 200rpx;  
    width: 200rpx;  
    margin-top: 200rpx;  
    margin-left: auto;  
    margin-right: auto;  
    margin-bottom: 50rpx;  
}  

.text-area {  
    display: flex;  
    justify-content: center;  
}  

.title {  
    font-size: 36rpx;  
    color: #8f8f94;  
}  

</style>

//common/test.js
export default function() {
return '123123123';
};

操作步骤:

使用发行云打包,安心打包

预期结果:

正常运行

实际结果:

启动白屏

bug描述:

【报Bug】unapp开启js原生混淆白屏vue饮用common目录的js文件

2022-12-04 14:37 负责人:无 分享
已邀请:
honeyChen

honeyChen

请问怎么解决的

丹哥

丹哥 - 丹哥

请问怎么解决的?我也遇到了同样的问题

5***@qq.com

5***@qq.com - 全能开发者

请问怎么解决这个?

要回复问题请先登录注册