我正在 AngularJS 中创建一个利用 templateUrl 键的自定义指令。我遇到的问题是我们将这些模板文件托管在外部 CDN 上,因此出现 Access-Control-Allow-Origin 错误。
XMLHttpRequest cannot load http://path_to_cdn/template_file.html. Origin http://xx.xx.xx.xx is not allowed by Access-Control-Allow-Origin.
我在某处读到我可以做这样的事情......
<script type="text/ng-template" src="http://path_to_cdn/template_file.html"></script>
...但这并不是很理想,无论如何我都无法让它正常工作。
有人有什么建议吗?