admin管理员组文章数量:1344207
I am beginning to read Pro AngularJS. In the section to setup the development environment it has me create a angularjs directory and put a test.html file into it. Outside of that folder I installed 'connect' and 'serve-static' for Node.js. I also created a server.js file. The contents are seen below:
var connect = require('connect');
var app = connect().use(connect.static('/angularjs'));
app.listen(5000);
When visiting the following URL http://localhost:5000/test.html
all I see is the text "Cannot GET /test.html".
I have looked at this and this question here on SO. None of the solutions were helpful for me.
I am beginning to read Pro AngularJS. In the section to setup the development environment it has me create a angularjs directory and put a test.html file into it. Outside of that folder I installed 'connect' and 'serve-static' for Node.js. I also created a server.js file. The contents are seen below:
var connect = require('connect');
var app = connect().use(connect.static('/angularjs'));
app.listen(5000);
When visiting the following URL http://localhost:5000/test.html
all I see is the text "Cannot GET /test.html".
I have looked at this and this question here on SO. None of the solutions were helpful for me.
Share Improve this question edited May 23, 2017 at 10:32 CommunityBot 11 silver badge asked Aug 22, 2014 at 23:56 nbonbonnbonbon 1,7673 gold badges19 silver badges29 bronze badges 04 Answers
Reset to default 9The book didn't really do a good job of describing where to put server.js that I remember. So I had it one folder above the angularjs folder. Therefore, the '..' needed to be removed. I made the mistake of leaving in the '/' which caused my problems. Just as I figured ... a stupid small mistake (hardest to find).
First, make sure your ../angularjs
folder contains test.html
file?
Then, you can try to resolve path
var connect = require('connect');
var path = require('path');
var app = connect().use(connect.static(path.resolve(__dirname, '..', 'angularjs')));
app.listen(5000);
instead of var app = connect().use(connect.static('/angularjs'));
use
var app = connect().use(connect.static('./angularjs'));
its worked for me
Below worked out for me.
var connect=require('connect'),
serveStatic=require('serve-static');
var path = require('path');
var server=connect();
server.use(serveStatic(path.resolve(__dirname, '..', 'angularjs')));
server.listen(5000);
本文标签: javascriptCannot GET testhtml when running Nodejs serverStack Overflow
版权声明:本文标题:javascript - Cannot GET test.html when running Node.js server - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743654217a2516844.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论