I am using A-Frame in Angular 2.
When I put image link directly in src,
<a-scene>
<a-curvedimage src="https://upload.wikimedia.org/wikipedia/commons/b/be/Random_pyramids.jpg" position="0 2 0"></a-curvedimage>
</a-scene>
it works well. working plunker
However, if I am using
<a-scene>
<a-curvedimage [src]="url" position="0 2 0"></a-curvedimage>
</a-scene>
with
url = 'https://upload.wikimedia.org/wikipedia/commons/b/be/Random_pyramids.jpg';
It won't give me any error, but it also does not show the image. issue plunker.
How can I solve this issue or any walkaround way? Thanks!