无法读取未定义错误的属性“发送”

时间:2021-04-27 22:58:02

标签: javascript discord discord.js

你好,当我写 &acil 时,我正在尝试从我的 Discord bot(Js) 向我所有的朋友发送消息,但是当我写这个命令时出了点问题,发送了这么多消息,有时还给 => TypeError: 无法读取未定义错误的属性“发送”

 require("dotenv").config();
 const fetch = require("node-fetch");
 const Discord=require("discord.js");
 const client = new Discord.Client();

 client.on("message",message =>{
  console.log("Gelen mesaj"+message.content);
  if(message.content === "&acil")
    message.client.users.cache.get('777206236986474526').send('ACİL TOPLANTI!');
    message.client.users.cache.get('675607935380094986').send('ACİL TOPLANTI!');
    message.client.users.cache.get('777206236986474526').send('ACİL TOPLANTI!');
    message.client.users.cache.get('7175607935380094986').send('ACİL TOPLANTI!');
   
    

});
  
    

1 个答案:

答案 0 :(得分:0)

尝试没有“消息”和“缓存”。您还需要确保机器人和用户至少有 1 个相互服务器,否则无法将其发送给他们。