使用模板时,我们可能会在网络服务器上托管应用程序,否则会导致交叉来源错误。所以,我将模板放在脚本标签中,如下所示:
<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
答案 0 :(得分:0)
您可以通过以下标记打开Chrome浏览器来阻止此错误。
chrome.exe --disable-web-security --allow-file-access-from-files
打开cmd并运行上面的命令。
注意强>
在运行上述命令之前,请确保您的浏览器已关闭。
希望它有所帮助。