Load AngularJS Template within page, dynamically
问题 I have a page containing 2 controllers: one which manages a list of so-called 'apps', and another that is to place the new Angular template into the innerHTML of its Div element. <div ng-controller="appList"></div> <div ng-controller="appPane"> Dynamic content should be loaded here! </div> I have tried using the standard {{expression}} bindings, but they do not work with html, I have also tried the ng-bind-html-unsafe directive (Binding the innerhtml to that of the App request's return) but