2***@QQ.COM
2***@QQ.COM
  • 发布:2022-07-11 16:35
  • 更新:2022-07-11 16:40
  • 阅读:283

【报Bug】console.log 不能输出 变量里有 null 的值

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Windows

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

HBuilderX类型: 正式

HBuilderX版本号: 3.4.18

手机系统: Android

手机系统版本号: Android 12

手机厂商: 华为

手机机型: 11

页面类型: vue

vue版本: vue2

打包方式: 云端

项目创建方式: HBuilderX

示例代码:

onLoad() {
let aaa ={
"aaa":123,
"bbb":null || 1,
"ccc":null,
}
console.log(aaa);//23行
console.log(aaa.aaa);//24行
console.log(aaa.bbb);//25行
console.log(aaa.ccc);//26行
},
16:32:56.945 123 at pages/index/index.vue:24
16:32:56.947 1 at pages/index/index.vue:25

操作步骤:

1

预期结果:

2

实际结果:

3

bug描述:

onLoad() {
let aaa ={
"aaa":123,
"bbb":null || 1,
"ccc":null,
}
console.log(aaa);//23行
console.log(aaa.aaa);//24行
console.log(aaa.bbb);//25行
console.log(aaa.ccc);//26行
},
16:32:56.945 123 at pages/index/index.vue:24
16:32:56.947 1 at pages/index/index.vue:25

2022-07-11 16:35 负责人:无 分享
已邀请:
2***@QQ.COM

2***@QQ.COM (作者)

APP端是好的 内置H5端不显示

该问题目前已经被锁定, 无法添加新回复