props:{
// 开始时间
startTime:{
type:String,
default:"00:00"
},
// 开始默认时间
startDefaultTime:{
type:String,
default(){
console.log(this); // 微信小程序是undefined
return this.startTime;
}
}
}
- 发布:2023-04-28 16:33
- 更新:2024-05-08 16:26
- 阅读:452
产品分类: uniapp/小程序/微信
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win7
HBuilderX类型: 正式
HBuilderX版本号: 3.7.9
第三方开发者工具版本号: 1.05.2204250
基础库版本号: 2.31.1
项目创建方式: HBuilderX
操作步骤:
预期结果:
正常执行
正常执行
实际结果:
TypeError: Cannot read property 'startTime' of undefined
TypeError: Cannot read property 'startTime' of undefined
bug描述:
props:{
// 开始时间
startTime:{
type:String,
default:"00:00"
},
// 开始默认时间
startDefaultTime:{
type:String,
default(){
console.log(this); // 微信小程序是undefined
return this.startTime;
}
}
}
tpframe2020 (作者)
H5测试是可以拿到this的,但微信小程序不行。
这算不算bug。。。
2023-06-09 11:38