iOS 闪光灯打不开
- 当前 Bug 的表现(可附上截图)
- 预期表现
- 复现路径
iOS闪光灯打开没反应,Android可以
- 提供一个最简复现 Demo
<camera device-position=“back” flash="{{flash}}" binderror=“error” style=“width: 100%; height: 300px;”
mode=‘scanCode’
bindscancode=“bindscancode”
></camera>
takePhoto() {
// auto, on, off
let flash = this.data.flash == ‘on’ ? ‘off’ : ‘on’
this.setData({
flash
})
console.log(‘flash :’, this.data.flash)
}