收藏
回答

微信小游戏 拍照功能

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小游戏 Bug createCamera 微信安卓客户端 8.0.34 905

https://developers.weixin.qq.com/minigame/dev/api/media/camera/wx.createCamera.htmlhttps://developers.weixin.qq.com/minigame/dev/api/media/camera/Camera.takePhoto.html

代码:(这个地方相机调用起来了,但是没有拍照按钮)

  takePhoto() {

        const ctx = wx.createCamera()

        ctx.takePhoto({

          quality: 'high',

          success: (res) => {

            this.setData({

              src: res.tempImagePath

            })

            wx.previewImage({

              current: res.tempImagePath, // 当前显示图片的http链接

              urls: [res.tempImagePath] // 需要预览的图片http链接列表

            })

          },

            fail: function (e) {


                console.log("拍摄失败");


                console.log(e);


            }

        })

      },




回答关注问题邀请回答
收藏

1 个回答

  • ıllıllı
    ıllıllı
    2023-07-05

    请问解决了吗

    2023-07-05
    有用
    回复
登录 后发表内容