I have an object in the following format:
Withinthemainobjecthasanobjectcalledupload.Thisobjectcontainsinformationabouttheimagestoberendered.
I'mtryingtodothis:
ng-src="{{o.way}}{{o.original_filename}}"
But it does not work at all. Returns the message:
Error: [$ interpolate: noconcat] Error while interpolating: {{o.way}} / {{o.original_filename}} Strict Contextual Escaping disallows interpolations that concatenate multiple expressions when a trusted value is required.
I found something about $ sce msn and it helped me mt.
I'm using an angle library to make a slide.
<slidecontainer ng-repeat="o in dataProject.upload.data">
<slide ng-src="{{o.way}}/{{o.original_filename}}"></slide>
</slidecontainer>