gpt4 book ai didi

JavaScript Node `res.send is not a function error`

转载 作者:可可西里 更新时间:2023-11-01 16:47:26 26 4
gpt4 key购买 nike

var url = require('url');
var http = require('http');

http.createServer(function (req, res) {
var url_parts = url.parse(req.url, true);
var q = url_parts.query;
console.log(q.query);

res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({ a: 1 }));

console.log(q.query);
}).listen(8080);

使用此代码我可以接收请求,但无法响应它。它显示 TypeError: res.send is not a function

最佳答案

您需要执行 res.end 而不是 res.sendres.sendexpress 模块的一部分,而不是核心 http 模块 的一部分。

关于JavaScript Node `res.send is not a function error`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49571642/

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