codecamp

tt.downloadFile

基础库版本 1.0.0 开始支持

下载网络文件到本地临时目录。单次下载允许的最大文件为 50MB。网络相关的 API 在使用前需要配置域名白名单。请参考网络请求使用说明。客户端直接发起一个 HTTPS GET 请求。 注意:请在服务端响应的 header 中指定合理的 Content-Type 字段,以保证客户端正确处理文件类型。


参数

Object object

名称数据类型属性默认值描述
urlstringrequired文件地址
headerobjectoptional请求 Header
successfunctionoptional接口调用成功的回调函数
failfunctionoptional接口调用失败的回调函数
completefunctionoptional接口调用结束的回调函数(成功、失败都会执行)

object.success 回调函数

参数

Object res

名称数据类型描述
tempFilePathstring文件本地路径
statusCodenumber返回 HTTP 状态码


返回值

DownloadTask对象。


代码示例

let task = tt.downloadFile({
  url: "somefileurl",
  success(res) {
    if (res.statusCode === 200) {
      console.log(`${res.tempFilePath}`);
    }
  },
  fail(res) {
    console.log(`downloadFile调用失败`);
  }
});

task.onProgressUpdate(res => {
  this.setData({
    progress: res.progress
  });
});

if (someReason) {
  task.abort();
}
tt.uploadFile
RequestTask
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

字节跳动小程序 介绍

字节跳动小程序 开发

字节跳动小程序开发框架

字节跳动小程序开发框架基础说明

字节跳动小程序开发框架基础功能

字节跳动小程序开发框架逻辑层

无标题文章

无标题目录

API

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题目录

无标题目录

无标题文章

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }