4***@qq.com
4***@qq.com
  • 发布:2023-03-13 13:57
  • 更新:2023-03-13 17:07
  • 阅读:365

【报Bug】Hbuilderx 3.7.3 代码中使用空值合并操作符(??)连接debug控制台报错无法调试

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Mac

PC开发环境操作系统版本号: 12.5 (21G72)

手机系统: iOS

手机系统版本号: iOS 16

手机厂商: 苹果

手机机型: iphone12/13

页面类型: vue

vue版本: vue3

打包方式: 云端

项目创建方式: CLI

CLI版本号: 3.7.3

示例代码:
<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 setup lang="ts">  
    import { ref, onMounted } from 'vue'  

    const title = ref('hello')  

    onMounted(() => {  
        title.value = title.value ?? 'hello2'  
    })  

</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>  

操作步骤:

如上代码

预期结果:

正常debug

实际结果:

报错

bug描述:

代码中使用空值合并操作符(??)连接debug控制台报错无法调试

2023-03-13 13:57 负责人:DCloud_HB_WDL 分享
已邀请:
DCloud_HB_WDL

DCloud_HB_WDL

内部已知问题,后期优化。

  • 我愿你知道

    版本支持我都懂,请问为什么HX3.6.18就能正常运行呢

    2023-06-19 13:39

要回复问题请先登录注册