我在 Angular 5 中使用 FormData,但它给出了下面给出的错误。
approvalUser(userId): Observable<any> {
let formData = new FormData();
formData = formData.append('id',userId); error in this line shows==> "Type 'void' is not assignable to type 'FormData' "
return this.http.post<any>(this.url.APPOROVAL_USER,formData);
}
Run Code Online (Sandbox Code Playgroud)