Openshift nodejs javascript文件位置

时间:2014-02-27 17:56:02

标签: node.js filepath openshift

我在Openshift nodejs中用Git bash推送我的应用程序。 我的sass1.js文件位于js文件夹中。 在我的index.html文件中,我将其称为

<script src="./js/sass1.js"></script>

但是当我查看Firefox时,我得到了这个错误

“NetworkError:404 Not Found - ... js / sass1.js”

2 个答案:

答案 0 :(得分:3)

您需要使用适当的环境变量引用代码位置。您还可以查看https://www.openshift.com/videos/getting-started-with-nodejs-on-openshift以获取有关使用openshift的nodejs的更多信息。

修改

第二个想法我认为这个主题将指向正确的方向https://www.openshift.com/forums/openshift/pictures-css-where-can-i-store-resources

答案 1 :(得分:0)

您需要为nodejs express app提供静态目录。

app.use(express.static(__dirname+"/yourfolderwherecssisresiding")