DEV Community

neo
neo

Posted on

Ionic angular src vs [src]

Straight to the point, src will not cache your images [src] will cache your images. So if you want to load image resources from server and use them when the device is offline, use [src]="your url goes here" instead of src="your url goes here".

Top comments (0)