使用模板时,我们可能会将应用程序托管在网络服务器上,否则这将导致跨源错误。所以,我将我的模板放在一个脚本标签中,如下所示:
<script type="text/ng-template" id="/home.html">
some text goes here
</script>
但是是否可以将上述内容放在外部文件中。我尝试了以下但没有奏效。
<script src="template.js" type="text/ng-template" id="/home.html"></script>
template.js 的内容
some text goes here