Argument of type ‘Object’ is not assignable to parameter of type ‘string’ - Ionic Angular
问题 Trying to parse with JSON but i get this error: Argument of type 'Object' is not assignable to parameter of type 'string'. import { Component, OnInit } from '@angular/core'; import { HttpClient } from '@angular/common/http'; @Component({ selector: 'app-uploader', templateUrl: './uploader.page.html', styleUrls: ['./uploader.page.scss'], }) export class UploaderPage implements OnInit { imageURL: string constructor(public http: HttpClient) { } ngOnInit() { } fileChanged(event) { const files =