1
- 发布:2022-07-11 13:23
- 更新:2022-07-11 16:31
- 阅读:706
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: w11
HBuilderX类型: 正式
HBuilderX版本号: 3.4.18
手机系统: Android
手机系统版本号: Android 12
手机厂商: 华为
手机机型: 11
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
操作步骤:
预期结果:
1
1
实际结果:
1
1
bug描述:
后台返回数据中有null uni.request不报错不返回结果 console.log(res)打印不出任何数据
正常网址访问接口返回数据
{
"data": {
"aaa": null,
"bbb": "null"
},
}
当data.aaa = null 时候uni.request不报错不返回结果 console.log(res)打印不出任何数据
去掉data.aaa 返回
{
"data": {
"bbb": "null"
},
}
1 个回复
2***@QQ.COM (作者)
跟新问题 console.log(res) 不能输出带有变量 = null 的数据
let aaa ={
"aaa":123,
"bbb":null || 1,
"ccc":null,
}
console.log(aaa);
console.log(aaa.aaa);
console.log(aaa.bbb);
console.log(aaa.ccc);
只能打印出 aaa.aaa aaa.bbb