HTML模板:
组件:
imgSrc: string;
ngOnInit() {
this.imgSrc = this.getImg();
}
getImg() {
return 'http://example.com/image.jpg';
}
HTML模板:
组件:
import { Component, ChangeDetectionStrategy } from '@angular/core';
@Component({
selector: 'app-image',
template: '
',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class ImageComponent {
imgSrc: string;
constructor() {
this.imgSrc = this.getImg();
}
getImg() {
return 'http://example.com/image.jpg';
}
}
HTML模板:
组件:
showImage = true;
getImg() {
return 'http://example.com/image.jpg';
}