gpt4 book ai didi

Node.js 与 requestify POST 超时

转载 作者:太空宇宙 更新时间:2023-11-03 23:04:44 24 4
gpt4 key购买 nike

我正在尝试通过从 node.js 到 PHP 文件的 POST 来请求用户的状态。我的问题是,我调用的 Web 服务回复速度非常慢(4 秒),所以我认为 .then 在 4 秒之前完成,因此不会返回任何内容。知道我是否可以延长请求的时间吗?

requestify.post('https://example.com/', {
email: 'foo@bar.com'
})
.then(function(response) {
var answer = response.getBody();
console.log("answer:" + answer);
});

最佳答案

我对 requestify 不太了解,但您确定可以使用 post 到 https 地址吗?在自述文件中,仅 requestify.request(...) 使用 https 地址作为示例。 (see readme)

我绝对可以给你的一个建议是始终兑现你的 promise :

requestify.get(URL).then(function(response) {
console.log(response.getBody())
}).catch(function(err){
console.log('Requestify Error', err);
next(err);
});

这至少应该告诉你你所 promise 的错误,并且你可以具体说明你的问题。

关于Node.js 与 requestify POST 超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38118523/

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