重庆小潘seo博客

当前位置:首页 > 重庆网络营销 > 小潘杂谈 >

小潘杂谈

微信小程序文件类API详解

时间:2020-09-10 00:00:05 作者:重庆seo小潘 来源:
本文主要和大家分享微信小程序文件类API详解,希望能帮助到大家。 一.小知识 1.wx.saveFile(OBJECT):保存文件到本地。 wx.chooseImage({success: function(res) {var tempFilePaths = res.tempFilePathswx.saveFile({tempFilePath: tempFilePaths[0],success

本文主要和大家分享微信小程序文件类API详解,希望能帮助到大家。

一.小知识

1.wx.saveFile(OBJECT):保存文件到本地。

微信小程序文件类API详解wx.chooseImage({success: function(res) {var tempFilePaths = res.tempFilePathswx.saveFile({tempFilePath: tempFilePaths[0],success: function(res) {var savedFilePath = res.savedFilePath}})}})2.wx.getSavedFileList(OBJECT):获取本地已保存的文件列表

微信小程序文件类API详解wx.getSavedFileList({success: function(res) {console.log(res.fileList)}})3.wx.getSavedFileInfo(OBJECT):获取本地文件的文件信息

微信小程序文件类API详解wx.getSavedFileInfo({filePath: 'wxfile://somefile', //仅做示例用,非真正的文件路径success: function(res) {console.log(res.size)console.log(res.createTime)}})4.wx.removeSavedFile(OBJECT):删除本地存储的文件

微信小程序文件类API详解wx.getSavedFileList({success: function(res) {if (res.fileList.length > 0){wx.removeSavedFile({filePath: res.fileList[0].filePath,complete: function(res) {console.log(res)}})}}})5.wx.openDocument(OBJECT):新开页面打开文档,支持格式:doc, xls, ppt, pdf, docx, xlsx, pptx

微信小程序文件类API详解wx.downloadFile({url: 'http://example.com/somefile.pdf',success: function (res) {var filePath = res.tempFilePathwx.openDocument({filePath: filePath,success: function (res) {console.log('打开文档成功')}})}})二.列子

3.wx.getSavedFileInfo(OBJECT):获取本地文件的文件信息<view>微信小程序文件类API详解

5.wx.openDocument(OBJECT):打开文档<view>//获取应用实例var app = getApp()Page({data:{path:'', },upload:function(){var that=thiswx.downloadFile({url: 'http://192.168.56.1/sino-ui/www.941in.com.hk/m.v1/o.pptx',//文件的在本地的路径success: function (res) {var filePath = res.tempFilePathwx.openDocument({filePath: filePath,success: function (res) {console.log('打开文档成功')}})}})}})这个文件的路径,必须是http或是Https,不能使url: 'D:/WWW/sino-ui/www.941in.com.hk/m.v1/o.pptx',

微信小程序文件类API详解相关推荐:

jQuery必须掌握的API

PHP如何开发api接口安全验证实例

PHP关于API接口实例分享以上就是微信小程序文件类API详解的详细内容,更多请关注小潘博客其它相关文章!