小程序上传身份证图片的实现方法

小程序上传身份证图片的实现方法
js页面
Page({


  data: {


    tempFilePaths: '',


    hidden: true, //true


    buthidden: false, //false


    sourceType: ['album', 'camera']


  },


  onLoad: function (options) {


    try {


      var res = wx.getSystemInfoSync()


      var platform = res.platform


      if (platform == 'ios') {


        util.msg("警告", "IOS系统暂不支持拍照,请从相册选择照片")


        this.setData({


          sourceType: ['album']


        })


      }


      console.log(platform)


    } catch (e) { }


  },


  frontimage: function () {


    var _this = this;


    var Type = _this.data.sourceType


    wx.chooseImage({


      count: 1, // 默认9 


      sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有


      sourceType: Type, // 可以指定来源是相册还是相机,默认二者都有 


      success: function (res) {


        // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片 


        _this.setData({


          FilePaths: res.tempFilePaths


        })


      }


    })


  },


  reciteimage: function () {


    var _this = this;


    var Type = _this.data.sourceType


    wx.chooseImage({


      count: 1, // 默认9 


      sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有 


      sourceType: Type, // 可以指定来源是相册还是相机,默认二者都有 


      success: function (res) {


        // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片 


        _this.setData({


          recitePaths: res.tempFilePaths


        })


      }


    })


  },
})




wxml页面






 


   


     


      身份证正面


     


   



   


     


      身份证背面


     


   



 



 


你可能感兴趣的:(小程序上传身份证图片的实现方法)