黔优媒体网-软文媒体自助发稿平台!
  1. 行业资讯
  2. 正文

微信小程序文件类API详解

来源:黔优媒体网   时间:2024-09-19

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


wx.chooseImage({
 success: function(res) {
 var tempFilePaths = res.tempFilePaths
 wx.saveFile({
 tempFilePath: tempFilePaths[0],
 success: function(res) {
 var savedFilePath = res.savedFilePath
})

2.wx.getSavedFileList(OBJECT):获取本地已保存的文件列表


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

3.wx.getSavedFileInfo(OBJECT):获取本地文件的文件信息


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

4.wx.removeSavedFile(OBJECT):删除本地存储的文件


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


wx.downloadFile({
 url: #39;http://example.com/somefile.pdf #39;,
 success: function (res) {
 var filePath = res.tempFilePath
 wx.openDocument({
 filePath: filePath,
 success: function (res) {
 console.log( #39;打开文档成功 #39;)
})

二.列子

3.wx.getSavedFileInfo(OBJECT):获取本地文件的文件信息

 view >
//获取应用实例
var app = getApp()
Page({
 data:{
 path: #39; #39;,
 filesize:0,
 upload:function(){
 var that=this
 wx.chooseImage({
 count: 1, 
 sizeType: [ #39;original #39;, #39;compressed #39;],// 可以指定是原图还是压缩图,默认二者都有 
 sourceType: [ #39;album #39;, #39;camera #39;], // 可以指定来源是相册还是相机,默认二者都有
 success: function (res) {
 var tempFilePaths = res.tempFilePaths;
 console.log(tempFilePaths)
 wx.getSavedFileInfo({
 filePath:res.tempFilePaths[0], //仅做示例用,非真正的文件路径
 success: function(res) {
 that.setData({
 filesize:res.size,
 that.setData({
 path:tempFilePaths
})

5.wx.openDocument(OBJECT):打开文档

 view >
//获取应用实例
var app = getApp()
Page({
 data:{
 path: #39; #39;,
 upload:function(){
 var that=this
 wx.downloadFile({
 url: #39;http://192.168.56.1/sino-ui/www.941in.com.hk/m.v1/o.pptx #39;,//文件的在本地的路径
 success: function (res) {
 var filePath = res.tempFilePath
 wx.openDocument({
 filePath: filePath,
 success: function (res) {
 console.log( #39;打开文档成功 #39;)
})

这个文件的路径,必须是http或是Https,不能使url: 'D:/WWW/sino-ui/www.941in.com.hk/m.v1/o.pptx',



相关推荐:

jQuery必须掌握的API

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

PHP关于API接口实例分享

以上就是微信小程序文件类API详解的详细内容,更多请关注php中文网其它相关文章!

微信app下载

微信是一款手机通信软件,支持通过手机网络发送语音短信、视频、图片和文字。微信可以单聊及群聊,还能根据地理位置找到附近的人,带给大家全新的移动沟通体验,有需要的小伙伴快来保存下载体验吧!


下一篇:没有了
【免责申明】黔优媒体网以上展示内容来源于用户自主上传、合作媒体、企业机构或网络收集整理,版权争议与本站无关,文章涉及见解与观点不代表黔优媒体网官方立场,请读者仅做参考,本文标题:微信小程序文件类API详解;欢迎转载,转载时请说明出处。若您认为本文侵犯了您的版权信息,或您发现该内容有任何违法/违规的内容,请您立即联系我们及时修正或删除。(邮箱号: kefu@qianu.com)
此操作需要登录,请先登录~
免费注册会员,尽享国内领先平台!