Issue
findvehicleDocumentsImage(owner: string, registrationNumber: string, fileType: string): Observable<any> {
debugger;
return this.http.get<any>(AppConstant.FIND_VEHICLE_DOCUMENT_API+'/'+owner+'/'+registrationNumber+'/'+fileType);
}
Solution
get img url in ts file:
imageUrl:string;
show in html:
<img src={{imageUrl}} alt=""/>
Answered By - Behnam Asaei
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.