微信小程式API 文件



wx.saveFile(OBJECT)

#儲存檔案到本機。

OBJECT參數說明:

QQ截图20170208111050.png

範例程式碼:

wx.startRecord({
  success: function(res) {
    var tempFilePath = res.tempFilePath
    wx.saveFile({
      tempFilePath: tempFilePath,
      success: function(res) {
        var savedFilePath = res.savedFilePath
      }
    })
  }
})

bug & tip

  1. tip: 本機檔案儲存的大小限制為10M

#

wx.getSavedFileList(OBJECT)

取得本機已儲存的檔案清單

OBJECT參數說明:

QQ截图20170208111110.png

success回傳參數說明:

QQ截图20170208111218.png

fileList中的專案說明:

QQ截图20170208111223.png

#範例程式碼:

wx.getSavedFileList({
  success: function(res) {
    console.log(res.fileList)
  }
})


#wx.getSavedFileInfo(OBJECT)

取得本機檔案的檔案資訊

OBJECT參數說明:

QQ截图20170208111227.png

success傳回參數說明:

QQ截图20170208111239.png

範例程式碼:

wx.getSavedFileInfo({
  filePath: 'wxfile://somefile', //仅做示例用,非真正的文件路径
  success: function(res) {
    console.log(res.size)
    console.log(res.createTime)
  }
})


wx.removeSavedFile(OBJECT)

刪除本機儲存的檔案

##OBJECT參數說明:

QQ截图20170208111244.png

範例程式碼:
wx.getSavedFileList({
  success: function(res) {
    if (res.fileList.length > 0){
      wx.removeSavedFile({
        filePath: res.fileList[0].filePath,
        complete: function(res) {
          console.log(res)
        }
      })
    }
  }
})


##wx .openDocument(OBJECT)


新開頁面開啟文檔,支援格式:doc, xls, ppt, pdf, docx, xlsx, pptx

#OBJECT參數說明:

參數##說明#filePathsuccess#failcomplete
說明說明
String檔案路徑,可透過downFile 取得
Function介面呼叫成功的回呼函數
Function #否介面呼叫失敗的回呼函數
Function

否######介面呼叫結束的回呼函數(呼叫成功、失敗都會執行)###############範例程式碼###
wx.downloadFile({
  url: 'http://example.com/somefile.pdf',
  success: function (res) {
    var filePath = res.tempFilePath 
    wx.openDocument({
      filePath: filePath,
      success: function (res) {
        console.log('打开文档成功')
      }
    })
  }
})