gpt4 book ai didi

javascript - 快速指南 hello.txt 不起作用

转载 作者:行者123 更新时间:2023-12-02 18:06:30 24 4
gpt4 key购买 nike

我在这里使用快速指南 http://expressjs.com/guide.html#intro 。但我收到了 Cannot GET/错误。有人帮忙吗?

var express = require('express');

var app = express();
app.get('/hello.txt', function(req, res){
res.send('Hello World');
});
app.listen(10397);
console.log('Listening on port 10397');

最佳答案

如果您在浏览器中打开http://localhost:10397/hello.txt,它将起作用。如果您只想加载站点的根目录,则需要定义一个单独的 app.get('/'... 路由:http://localhost:10397。这就是“Cannot GET/”错误的含义。

关于javascript - 快速指南 hello.txt 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20055226/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com