我无法在请求回调中执行第二个请求。
request({
url: url,
headers: {
'auth-token': token
},
method: 'POST',
json: true,
body: data
}, (err, req, body) => {
if (err) {
console.log(err);
} else {
// Prosses data;
// This is the second request.
request({
url: url2,
headers; {
'auth-token': token
},
method: 'POST',
json: true,
body: data2
}, (err, req, body) => {
if (err) {
console.log(err);
return;
}
//Process data.
})
}
})
问题是第二个请求没有执行。
我正在使用nodemon启动express server
,但在nodemon
上只有express
上的第一个请求才会收到。
但奇怪的是,当我第二次调用该方法而不关闭electron
应用程序时,second request
被执行。我可以在nodemon
上看到第一个请求首先被执行。
nodemon
的输出是这样的。
POST /path/to/url 200 6.181 ms - 641 //-> this is the first execution. then there is nothing follows.
// Then I call the method again using the app. And the result is this.
POST /path/to/second/url 200 9.645 ms - 21
POST /path/to/url 200 21.628 - 641
看起来/path/to/second/url
无处停留在某处,如果第二次调用该方法,只需发送到服务器。
请帮助,谢谢。
更新:添加了更多信息。
我有一个文件夹routes
所有.js
文件都保存在那里。
然后我在我的app.js
let rs = fs.readdirSync(path.join(process.cwd(), '/routes/'));
rs.forEach((file) => {
if (file.indexOf('.js') !== -1) {
let fn = '/' + file.replace(/\.[^/.]+$/, '');
let pt = path.join(__dirname, './routes', fn);
let req = require(pt);
app.use(fn, req);
}
});
然后在路线文件上我有类似的东西。
router.post('url', (req, res) => {
// here calling the controller.
// mostly just single line passing the request and result variable to the controller.
});
实际上,请求是在ipc回调中调用的。我有一个菜单项,在click()
事件中我刚使用了browserWindow.getFocusedWindow().webContents.send('ipc-name')
,然后就会触发。
ipc.on('ipc-name', () => {
// The request is called here.
}
答案 0 :(得分:1)
这并不能解决OP问题,因为Linux env中存在问题但是作为一种解决方法。我们必须在电子中使用ClientRequest API而不是请求模块,这是基于事件的,只能完成任务但更难以解决回调内部问题所面临的问题。
示例代码:
function triggerCall() {
const request = net.request(`${root}/routes/get1`);
request.on('response', (response) => {
response.on('data', (chunk) => {
console.log(`BODY: ${chunk}`)
})
response.on('end', () => {
console.log('req 1 end');
const request1 = net.request(`${root}/routes/get2`);
request1.on('response', (response) => {
response.on('data', (chunk) => {
console.log(`BODY: ${chunk}`)
})
response.on('end', () => {
console.log('req 2 end');
})
})
request1.end();
})
})
request.end();
};