I have a database with a list of items. Each item has it's own unique ID. I would like to associate the ID with an image in a folder using AngularJS. I have tried this:
<img ng-src="~/images/assets/mainImg/{{stages.stageID}}.gif" alt="{{imageDescription}}" style="width:100px;height:100px">
But it doesn't work. Any suggestions please?