Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
598 views
in Technique[技术] by (71.8m points)

在Postman中调用API,直接返回一张图片,这种API在Angular8中如何调用?

如题,使用Angular如下方法调用,报错如下:

image

getThumbnail(viewId: string):Observable<any> {
  const headersSite = new HttpHeaders().append('X-Tableau-Auth', storage.getItem('tokenQ'));
  const hdrSite = { headers: headersSite };
  return this.http.get(this.uri_tableau + 'api/3.9/sites/' + storage.getItem('siteIdCustomer') + '/views/' + viewId + '/image', hdrSite)
  .pipe(
    tap(v => console.log(v)),
    map(
    (viewsRes) => {
      return viewsRes;
    }
    ))

}
this.dataServe.getThumbnail(this.viewUrl).subscribe(v => console.log(v))  // 无法打印

这种情况,如何处理?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

直接<img [src]="**"/>


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...