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
- 更新:2022-07-11 16:40
- 阅读:283
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: w11
HBuilderX类型: 正式
HBuilderX版本号: 3.4.18
手机系统: Android
手机系统版本号: Android 12
手机厂商: 华为
手机机型: 11
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
示例代码:
操作步骤:
1
1
预期结果:
2
2
实际结果:
3
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
1 个回复
2***@QQ.COM (作者)
APP端是好的 内置H5端不显示