NODEJS 当 URL 响应状态为 404 时如何执行操作?



>我正在制作一个不和谐机器人,我想制作一个命令,发送 3 个随机字符,然后将这些字符放在 url 的末尾以检查它是否存在(在这种情况下,我正在使用 steam 帐户来检查 id 是否被占用(,但我需要这样做,以便当响应状态为 404 时,它会发送一条消息说 ID 未被占用。

var urlExists = require('url-exists');
//3CHAR
else if (message.content == "+3char") {     
message.channel.send(getRandomString(3));

var theURL = "https://steamcommunity.com/id/" + message.channel.lastmessage;
urlExists("theURL");

if (response.status != 404) {     
return;
}

else {message.channel.send("`URL is not taken`");}

}

这就是我现在所拥有的,但是我收到错误"未定义响应"。 任何建议将不胜感激!

您遇到了async问题。 您需要传入一个回调函数来urlExists。 回调函数在urlExists对象完成执行后执行。

https://www.npmjs.com/package/url-exists

var urlExists = require('url-exists');
urlExists('https://www.google.com', function(err, exists) {
console.log(exists); // true
});
urlExists('https://www.fakeurl.notreal', function(err, exists) {
console.log(exists); // false
});

在您的情况下,您需要执行以下操作:

var urlExists = require('url-exists');
var theURL = "https://steamcommunity.com/id/" + message.channel.lastmessage;
urlExists("theURL", (err, exists) => {
if (err) {
// handle error
}
if (exists) {
message.channel.send("`URL is not taken`");
} else {
// do something when the URL does not exist
}  
});

相关内容

  • 没有找到相关文章

最新更新