Skip to content Skip to sidebar Skip to footer

AngularJS, Ng-repeat With Ng-include Not Rendering

Hi I am starting to learn angular and I'm running into a problem when I use a combination of ng-repeat with ng-include. No matter what I do I cannot get the templates to render. I

Solution 1:

I quote Your code

 <div ng-include="{{workspace.TemplateUrl}}"></div>

should be

 <div ng-include="workspace.TemplateUrl"></div>

since it is a ng statement.


Post a Comment for "AngularJS, Ng-repeat With Ng-include Not Rendering"