I'm learning to use the MEAN full-stack, and got stuck with a problem I can not find a solution for.
Iterating over the JSON object works perfectly fine using ng-repeat, but using the x.url variable in the third column just won't work at all. The URL is printed correctly in the second column.
How would I reference to the x.url variable in the iframe?
Thank you.
<div class="jumbotron text-center">
<table class='table table-bordered'>
<caption>LIST OF ALL SONGS</caption>
<thead>{{ tagline }}</thead>
<tr ng-repeat="x in songs">
<td>{{x.name}}</td>
<td>{{x.url}}</td>
<td><iframe width="560" height="315" src={{x.url}} frameborder="0" allowfullscreen></iframe></td>
</tr>
</table>
</div>