未验证 提交 b0a849b2 编写于 作者: O openharmony_ci 提交者: Gitee

!5092 【misc软件服务子系统】request部件修改接口文件

Merge pull request !5092 from wangdongqi/OpenHarmony-3.1-Release
......@@ -462,13 +462,6 @@ on(type: 'progress', callback:(receivedSize: number, totalSize: number) => vo
**示例:**
```js
let downloadTask;
request.download({ url: 'https://xxxx/xxxx.hap' }, (err, data)=> {
if (err) {
console.error('Failed to request download. Cause:' + err);
return;
}
downloadTask = data;
downloadTask.on('progress', function download_callback(receivedSize, totalSize) {
console.info("download receivedSize:" + receivedSize + " totalSize:" + totalSize);
}
......@@ -504,13 +497,6 @@ off(type: 'progress', callback?: (receivedSize: number, totalSize: number) =>
**示例:**
```js
let downloadTask;
request.download({ url: 'https://xxxx/xxxx.hap' }, (err, data)=> {
if (err) {
console.error('Failed to request download. Cause:' + err);
return;
}
downloadTask = data;
downloadTask .off('progress', function download_callback(receivedSize, totalSize) {
console.info("download receivedSize:" + receivedSize + " totalSize:" + totalSize);
}
......@@ -539,13 +525,6 @@ on(type: 'complete'|'pause'|'remove', callback:() => void): void
**示例:**
```js
let downloadTask;
request.download({ url: 'https://xxxx/xxxx.hap' }, (err, data)=> {
if (err) {
console.error('Failed to request download. Cause:' + err);
return;
}
downloadTask= data;
downloadTask.on('complete', function callback() {
console.info('Download task completed.');
}
......@@ -574,13 +553,6 @@ off(type: 'complete'|'pause'|'remove', callback?:() => void): void
**示例:**
```js
let downloadTask;
request.download({ url: 'https://xxxx/xxxx.hap' }, (err, data)=> {
if (err) {
console.error('Failed to request download. Cause:' + JSON.stringify(err));
return;
}
downloadTask = data;
downloadTask.off('complete', function callback() {
console.info('Download task completed.');
}
......@@ -615,13 +587,6 @@ on(type: 'fail', callback: (err: number) => void): void
**示例:**
```js
let downloadTask;
request.download({ url: 'https://xxxx/xxxx.hap' }, (err, data)=> {
if (err) {
console.error('Failed to request download. Cause:' + err);
return;
}
downloadTask = data;
downloadTask.on('fail', function callBack(err) {
console.info('Download task failed. Cause:' + err);
}
......@@ -656,13 +621,6 @@ off(type: 'fail', callback?: (err: number) => void): void
**示例:**
```js
let downloadTask;
request.download({ url: 'https://xxxx/xxxx.hap' }, (err, data)=> {
if (err) {
console.error('Failed to request download. Cause:' + err);
return;
}
downloadTask = data;
downloadTask.off('fail', function callBack(err) {
console.info('Download task failed. Cause:' + err);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册