0

使用模板时,我们可能会将应用程序托管在网络服务器上,否则这将导致跨源错误。所以,我将我的模板放在一个脚本标签中,如下所示:

<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
4

1 回答 1

0

您可以通过使用以下标志打开 chrome 浏览器来防止此错误。

chrome.exe --disable-web-security --allow-file-access-from-files

打开 cmd 并运行上面的命令。

笔记

在运行上述命令之前,请确保您的浏览器已关闭。

希望能帮助到你。

于 2014-05-22T07:01:44.307 回答