Image
类型的SQL Server列中的图像。
我使用rest api返回对象,然后返回正常。
我的HTML会执行* ng等待返回的图像。
<div *ngIf="imagesFound">
<ngb-carousel [interval]="1000" [wrap]="true" [keyboard]="true" >
<ng-template ngbSlide *ngFor="let image of images">
<img class="center-block" src="{{image.Image}}">
</ng-template>
</ngb-carousel>
</div>
&#13;
我在点击时调用方法。
searchImages(query: string){
this.searching = true;
return this._imageService.getImage(query).subscribe(
data => this.handleSuccess(data),
error => this.handleError,
() => this.searching = false
)
}
handleSuccess(data){
if (data.recordset) {
this.imagesFound = true;
this.emptyData =false;
this.images = data.recordset;
console.log(data.recordset);
} else {
this.imagesFound = false;
this.emptyData =true;
console.log("no images found");
}
}
&#13;
我收到了丢失的图像。我真的卡住了,可以使用一些指导。有人对我有什么建议吗?