返回介绍

File

发布于 2019-12-27 00:37:39 字数 8346 浏览 1040 评论 0 收藏 0

文件操作.

支持

安装

$ npm install universal-file --save

方法

getInfo(options)

获取文件信息。

参数

属性类型默认值必选描述支持
filePathString文件路径
digestAlgorithmStringmd5x摘要算法,支持 md5 和 sha1

getSavedInfo(options)

获取保存的文件信息。

参数

属性类型默认值必选描述支持
filePathString文件路径

getSavedList()

获取保存的所有文件信息。

openDocument(options)

在新页面打开文件预览。

参数

属性类型默认值必选描述支持
filePathString文件路径
fileTypeStringx文件类型

removeSaved(options)

删除某个保存的文件。

参数

属性类型默认值必选描述支持
filePathString文件路径

save(options)

保存文件到本地。

参数

属性类型默认值必选描述支持
filePathString文件路径

upload(options)

上传本地资源到开发者服务器。

参数

属性类型默认值必选描述支持
urlString开发者服务器地址
filePathString要上传文件资源的本地定位符
fileNameString文件名,即对应的 key,开发者在服务器端通过这个 key 可以获取到文件二进制内容
fileTypeString文件类型支持图片、视频、音频( image / video / audio)
headerObjectxHTTP 请求 Header
formDataObjectxHTTP 请求中其他额外的 form 数据

download(options)

下载文件资源到本地。

参数

属性类型默认值必选描述支持
urlString下载文件地址
headerobjectxHTTP 请求 Header

示例

import File from 'universal-file';

// Get file information.
File.getInfo({
  filePath: 'https://resource/apml953bb093ebd2834530196f50a4413a87.video',
  digestAlgorithm: 'sha1',
  success: (res)=>{
    console.log(JSON.stringify(res))
  }
});

// You need to save the address to be able to use File.getsavedinfo
File.getSavedInfo({
  filePath: '**filePath**',
  success: (res) => {
    console.log(res.size);
    console.log(res.createTime);
  }
});

File.getSavedList({
  success:(res) => {
    console.log(JSON.stringfy(res));
  }
});

File.openDocument({
  filePath: '**filePath**',
  fileType: 'pdf',
  success: (res) => {
    console.log('open document success');
  };
});

File.removeSaved({
  filePath: '**filePath**',
  success:(res) => {
    console.log('remove success');
  }
});

File.save({
  filePath: '**filePath**',
  success:(res) => {
    console.log('save success');
  }
});

File.upload({
  url: 'http://httpbin.org/post',
  fileType: 'image',
  fileName: 'file',
  filePath: '**filePath**',
  success: res => {
    console.log('upload success');
  },
  fail: res => {
    console.log('upload succefailss');
  },
});

File.download({
  url: 'http://img.alicdn.com/tfs/TB1x669SXXXXXbdaFXXXXXXXXXX-520-280.jpg',
  success: res => {
    console.log(res.filePath);
  },
  fail: res => {
    console.log(res);
  },
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文