小程序
小游戏
企业微信
微信支付
扫描小程序码分享
- 当前 Bug 的表现
使用camera组件调用摄像头时自动弹出图片选择画面
- 预期表现
直接进行拍摄
- 复现路径
<camera device-position="back" flash="off" binderror="error"></camera>
- 提供一个最简复现 Demo
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<
camera
device-position
=
"back"
flash
"off"
binderror
"error"
style
"width: 100%; height: 300px;"
></
>
button
type
"primary"
bindtap
"takePhoto"
>拍照</
view
>预览</
image
mode
"widthFix"
src
"{{src}}"
Page({
takePhoto() {
const ctx = wx.createCameraContext()
ctx.takePhoto({
quality:
'high'
,
success: (res) => {
this
.setData({
src: res.tempImagePath
})
}
},
error(e) {
console.log(e.detail)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
试过了,还是会先弹出图片选择的页面
啥手机。。。
华为荣耀V9
换个手机
下了官方的demo调试然后再换自己的程序,不知怎么的就不弹了,谢谢!
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<
camera
device-position
=
"back"
flash
=
"off"
binderror
=
"error"
style
=
"width: 100%; height: 300px;"
></
camera
>
<
button
type
=
"primary"
bindtap
=
"takePhoto"
>拍照</
button
>
<
view
>预览</
view
>
<
image
mode
=
"widthFix"
src
=
"{{src}}"
></
image
>
Page({
takePhoto() {
const ctx = wx.createCameraContext()
ctx.takePhoto({
quality:
'high'
,
success: (res) => {
this
.setData({
src: res.tempImagePath
})
}
})
},
error(e) {
console.log(e.detail)
}
})
试过了,还是会先弹出图片选择的页面
啥手机。。。
华为荣耀V9
换个手机
下了官方的demo调试然后再换自己的程序,不知怎么的就不弹了,谢谢!