How do I get an angular expression working inside a script tag... I am pretty new to this and need help? Here is an example of my java script code:
There is nothing special wrt use of AngularJS expressions inside partial templates.
As already said your model is actually array - so you'll have to iterate through the items using ng-repeat like this:
-
Card id: {{card.id}}
Card title: {{card.title}}
Card details: {{card.details}}
Please see working JSFiddle example.