脚本中的Angular外部模板

时间:2014-05-22 06:43:41

标签: javascript angularjs angular-template

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

<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

1 个答案:

答案 0 :(得分:0)

您可以通过以下标记打开Chrome浏览器来阻止此错误。

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

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

注意

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

希望它有所帮助。