不使用 node-fetch 调用的快速路由
Express routes not called with node-fetch
我有一个只有一条路线的快递服务器。当我在浏览器中调用此路由时,我能够获取服务器发送的数据。但是,当我尝试使用简单的节点提取从脚本调用此路由时,我得到了响应,但未调用我的路由(未检索到数据)。我解释一下:
这里是我的快递服务器的代码:
App.ts
import express from "express";
import httpServer from "./httpServer";
import HttpRoutes from "./httpRoutes";
class BrokerServer {
public httpServer!: express.Application;
public httpRoutes!: HttpRoutes;
constructor() {
this.initHttpServer();
}
private initHttpServer(): void {
this.httpServer = httpServer;
this.httpRoutes = new HttpRoutes();
this.httpRoutes.routes();
}
}
new BrokerServer();
Server.ts
import express from "express";
import * as bodyParser from "body-parser";
class HttpServer {
public HTTP_PORT: number = 9000;
public server!: express.Application;
constructor() {
this.server = express();
this.server.use(bodyParser.json());
this.server.listen(this.HTTP_PORT, () => {
console.log('Broker HTTP Server listening on port 9000');
});
}
}
export default new HttpServer().server;
还有我的routes.ts
import httpServer from "./httpServer";
export default class HttpRoutes {
public routes(): void {
httpServer.get("/getNodes", (req, res) => {
console.log("GET");
res.status(200).send(JSON.stringify({ nodes: [] }));
});
}
}
当我启动我的服务器并在 url http://localhost:9000/getNodes 上导航时,我可以看到我的 console.log('GET')
。当我尝试使用 node-fetch 时情况并非如此。
这是我的小脚本:
const fetch = require('node-fetch');
console.log('launch fetch');
fetch('http://localhost:9000/getNodes')
.then(response => {
console.log('response', response);
return response.json()
})
.then(results => {
console.log('results', results);
})
.catch(error => {
console.log('error', error);
});
使用脚本,我达到了 console.log('response', response);
,但从未达到我的结果。
谁知道问题出在哪里?
我找到了它不起作用的原因。我使用了一个已被使用的随机端口(端口 9000)。更改端口工程...
我有一个只有一条路线的快递服务器。当我在浏览器中调用此路由时,我能够获取服务器发送的数据。但是,当我尝试使用简单的节点提取从脚本调用此路由时,我得到了响应,但未调用我的路由(未检索到数据)。我解释一下:
这里是我的快递服务器的代码:
App.ts
import express from "express";
import httpServer from "./httpServer";
import HttpRoutes from "./httpRoutes";
class BrokerServer {
public httpServer!: express.Application;
public httpRoutes!: HttpRoutes;
constructor() {
this.initHttpServer();
}
private initHttpServer(): void {
this.httpServer = httpServer;
this.httpRoutes = new HttpRoutes();
this.httpRoutes.routes();
}
}
new BrokerServer();
Server.ts
import express from "express";
import * as bodyParser from "body-parser";
class HttpServer {
public HTTP_PORT: number = 9000;
public server!: express.Application;
constructor() {
this.server = express();
this.server.use(bodyParser.json());
this.server.listen(this.HTTP_PORT, () => {
console.log('Broker HTTP Server listening on port 9000');
});
}
}
export default new HttpServer().server;
还有我的routes.ts
import httpServer from "./httpServer";
export default class HttpRoutes {
public routes(): void {
httpServer.get("/getNodes", (req, res) => {
console.log("GET");
res.status(200).send(JSON.stringify({ nodes: [] }));
});
}
}
当我启动我的服务器并在 url http://localhost:9000/getNodes 上导航时,我可以看到我的 console.log('GET')
。当我尝试使用 node-fetch 时情况并非如此。
这是我的小脚本:
const fetch = require('node-fetch');
console.log('launch fetch');
fetch('http://localhost:9000/getNodes')
.then(response => {
console.log('response', response);
return response.json()
})
.then(results => {
console.log('results', results);
})
.catch(error => {
console.log('error', error);
});
使用脚本,我达到了 console.log('response', response);
,但从未达到我的结果。
谁知道问题出在哪里?
我找到了它不起作用的原因。我使用了一个已被使用的随机端口(端口 9000)。更改端口工程...