代码:
app.post('/new', urlencodedParser, function (req, res) {
if (!req.body) return res.sendStatus(400);
emitter.on('response', function (output) {
res.status(200).json({ip: `${output}`, id: `${random_id}`});
});
});
问题:
我现在遇到的问题(我正在使用express
)是我无法向应用发出多个请求。 Express第一次返回预期值,之后每次都返回:
Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
应用程序的其余部分是由事件发射器和侦听器触发的函数集合。可以把它想象成一串发射器,触发听众并连续执行4或5个函数,最后返回一个值。
这是第一次完美无缺,但再也没有。请注意,请求预计来自不同的计算机,而不是单个计算机。
我知道res.end()
将结束响应,但没有Express功能的组合使其第二次工作。有没有办法使用发射器/侦听器和快速响应?
提前致谢!
编辑:更多代码
emitter.on('newRequest', persistentDisk);
emitter.on('newDisk', persistentDisk);
emitter.on('newDeployment', newDeployment);
emitter.on('newService', createService);
emitter.on('checkDeployment', checkDeployment);
emitter.on('returnIp', returnIp);
emitter.on('deleteRequest', deleteApp);
app.post('/new', urlencodedParser, function (req, res) {
if (!req.body) return res.sendStatus(400);
var random_id = randomize('a', 8);
var user_id = req.body.user_id;
var stripe_id = req.body.stripe_id;
var app_name = req.body.app_name;
var gpu_count = req.body.gpu_count;
var cpu_count = req.body.cpu_count;
var memory_count = req.body.memory_count;
emitter.emit('newRequest', random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count);
emitter.on('response', function (output) {
res.send({ip: `${output}`, id: `${random_id}`});
});
async function persistentDisk(random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count) {
try {
emitter.emit('newDeployment', random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count);
emitter.emit('newService', random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count);
} catch (err) {
console.log(err);
errors.report(err);
}
}
async function newDeployment(random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count) {
try {
var deployConfig = JSON.parse(`...`);
emitter.emit('checkDeployment', random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count);
} catch (err) {
console.log(err);
errors.report(err);
}
}
async function createService(random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count) {
try {
var exposeConfig = JSON.parse(`...`);
emitter.emit('returnIp', random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count)
} catch (err) {
console.log(err);
errors.report(err);
}
}
async function checkDeployment(random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count) {
try {
} catch (err) {
console.log(err);
errors.report(err);
}
}
async function returnIp(random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count) {
try {
var service = JSON.parse(`{"ip":"127.0.0.1"}`)
jq.run('.ip', service, { input: 'json' }).then((output) => {
emitter.emit('response', output)
if (output.toString() === "null") {
setInterval(() => {
console.log('value is null');
emitter.emit('returnIp', random_id, user_id, stripe_id, app_name, gpu_count, cpu_count, memory_count)
}, 15000);
}
});
} catch (err) {
console.log(err);
errors.report(err);
}
}
第一次产生响应(127.0.0.1
,重要的是)。
答案 0 :(得分:0)
更改为:
app.post('/new', urlencodedParser, function (req, res) {
if (!req.body) return res.sendStatus(400);
emitter.once('response', function (output) {
res.status(200).json({ip: `${output}`, id: `${random_id}`});
});
});
(从emitter.on到emitter.once)解决了这个问题。