위챗 애플릿(사진 기능 사용)

2731 단어 소절차
takePhoto: function() {
    const ctx = wx.createCameraContext()
    ctx.takePhoto({
      quality: 'high',
      success: (res) => {
        this.setData({
          src: res.tempImagePath
        })
      }
    })
  },
<!-- camera.wxml -->
<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>

좋은 웹페이지 즐겨찾기