gpt4 book ai didi

javascript - 如何添加标题以形成 Angular 5 中的数据

转载 作者:行者123 更新时间:2023-11-29 20:30:46 25 4
gpt4 key购买 nike

如何添加标题以形成具有进度条的数据?

我收到以下错误:

ERROR in src/app/services/auth.service.ts(91,23): error TS2554: Expected 2-4 arguments, but got 5.

代码:

   public upload(
files: Set<File>
): { [key: string]: { progress: Observable<number> } } {
// this will be the our resulting map
const status: { [key: string]: { progress: Observable<number> } } = {};

files.forEach(file => {
// create a new multipart-form for every file

const formData: FormData = new FormData();
formData.append('file', file, file.name);

// formData.append('name', course, course.name);
// formData.append('text', username, username.name);
let headers = new Headers();
this.loadToken();
headers.append('Authorization', this.authToken);
// headers.append('Content-type', undefined);


// create a http-post request and pass the form
// tell it to report the upload progress

const req = new HttpRequest('POST', 'users/upload', formData,{headers: headers},{
reportProgress: true
});

// create a new progress-subject for every file
const progress = new Subject<any>();

// send the http-request and subscribe for progress-updates

const startTime = new Date().getTime();
this.https.request(req).subscribe(event => {
if (event.type === HttpEventType.UploadProgress) {
// calculate the progress percentage

const percentDone = Math.round((100 * event.loaded) / event.total);
// pass the percentage into the progress-stream
progress.next(percentDone);
} else if (event instanceof HttpResponse) {
// Close the progress-stream if we get an answer form the API
// The upload is complete
progress.complete();
}
});

// Save every progress-observable in a map of all observables
status[file.name] = {
progress: progress.asObservable()
};
});

// return the map of progress.observables
return status;
}

最佳答案

ERROR in src/app/services/auth.service.ts(91,23): error TS2554: Expected 2-4 arguments, but got 5.

错误消息说它需要 2-4 个参数,但得到了 5 个。

headersreportProgress 不应该是单独的参数,它们都应该是 HttpRequest 中第四个参数的一部分。 .

要修复错误,请更改 HttpRequest,如下所示:

const req = new HttpRequest('POST', 'users/upload', formData,
{ headers: headers, reportProgress: true });

关于javascript - 如何添加标题以形成 Angular 5 中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58423357/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com