How get a template from a remote URL with AngularJS
问题 I am making an app with NW and AngularJS to make a desktop app, what I want is to get the files from a server(html, css, js). then I want to do something like the following code: aux.config(function ($routeProvider) { $routeProvider .when('/testInformation/', { templateUrl: 'https://serverName/test.html', controller: 'shipmentInformationController' }).otherwise({ redirectTo: '/' }); }); The problem is that when I run the app it is not getting the html of the template, then I am not sure if