Not sure if I got it wrong. I'm not able to include template from a file via script tag. Any idea?
Template:
<script type="text/ng-template" id="test1">inside</script>
<script type="text/ng-template" id="test2" src="templateFile.html"></script>
<div ng-controller="MyCtrl">
Select:
<a href ng:click="tpl='first.html'">internal</a>
| <a href ng:click="tpl='test1'">script inside</a>
| <a href ng:click="tpl='test2'">script external</a>
<div style="border: 1px solid;min-height: 20px">
<ng:include src="tpl"></ng:include>
</div>
</div>
Controller:
var myApp = angular.module('myApp', []);
function MyCtrl($scope, $templateCache) {
$templateCache.put('first.html', 'First template');
}
JSFiddle: http://jsfiddle.net/aG8Zy/32/
Actually all required information exists on stackoverflow
I try to sum up:
Please see 1 and 2
Template:
App:
jsFiddle: http://jsfiddle.net/glebv/msfbr1xr/15/
But as you see domain amazonaws.com can be used for loading resources but tools.ietf.org doesn't allow it. Both of them were added to WhiteList
You should use an approaches which allows CORS.