wx.getSavedFileInfo用来获取本地文件信息

wx.getSavedFileInfo的参数说明

image.png

  1. Page({
  2. data: {
  3. filePath:""
  4. },
  5. onLoad: function(){
  6. let filePath = wx.getStorageSync("filepath") || ""
  7. this.setData({
  8. filePath
  9. })
  10. if (filePath){
  11. wx.getSavedFileInfo({
  12. filePath: filePath,
  13. success: function(res){
  14. console.log("savedFileInfo:",res)
  15. }
  16. })
  17. }
  18. },
  19. …(省略部分代码)
  20. })