Angular:相对js / css路径

时间:2016-02-22 09:00:03

标签: javascript angularjs gruntjs

我是角色,凉亭,咕噜声等新东西,所以我完全坚持当前的问题。 我的项目是基于角度建造的。 在我的index.html路径中,这样的js / css

<script src="/scripts/shared/flow-item.js"></script>

在使用index.html

中的js / css的grunt路径进行编译之后
<script src="scripts/app.da1aee60.js">

这样如果我在tomcat上在ROOT上部署项目,一切都很完美 但如果我将它部署在MyProject /等文件夹中并调用index.html,我们会看到应用程序仍然按路径http://localhost:8080/scripts/app.da1aee60.js查找脚本http://localhost:8080/MyProject/scripts/app.da1aee60.js 是否有可能在项目中找到适当路径的脚本?

1 个答案:

答案 0 :(得分:0)

您可以在html(head head标签内)中设置基本路径:

<base href="/scripts/MyProject/" />