【微信小程序】菜鸟实例(1):文件操作

<script>
// 初始化变量
var tempPath = ''
var savedFileList = []

Page({
  // 已经存储的文件列表
  savedList:function(){
    wx.getSavedFileList({
      success(res){
        console.log(res.fileList)
      }
    })
  },
  // 保存文件
  save:function(){
    //确保已经有文件在缓存中
    wx.savaFilePath({
      tempImagePath:tempPath,
      success:function(res){
        console.log(res)
      },
      fail:function(res){
        console.log(res)
      }
    })
  },
  // 获取单个文件信息
  savedFileInfo:function(){
    wx.getSavedFileInfo({
      filePath: savedFileList[0].filePath,
      success:function(res){
        console.log(res)
      }
    })
  },

  takePhoto:function(){
    //获取拍照对象
    this.ctx.takePhoto({
      quality:'high',
      success:function(res){
        tempPath = res.tempImagePath
        console.log(tempPath)
        //读取临时文件信息
        wx.getFileInfo({
          filePath: tempPath,
          success (e){
            console.log(e)
          }
        })
      }
    })
  },
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    // 创建camera组件上下文对象
    this.ctx = wx.createCameraContext(this)

  }
})
</script>
<page>
	<camera device-position='back' flash='off' style='width:100%;height:300px'></camera>
<button type="primary" bindtap="takePhoto">TakePhoto!</button>
<button bindtap="save">SAVE</button>
<button bindtap="savedList">findList</button>
<button bindtap="savedFileInfo">findOne</button>
</page>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值