discord.js在编辑消息之前发送并等待

时间:2018-04-15 09:09:59

标签: javascript wait discord.js

我想要我的机器人,发送my emotes,等待1秒,然后将消息编辑为my others emotes

这是我的代码:

message.channel.send('my emotes')
  .then((msg) => {
    setTimeout(function() {
    msg.edit('my other emotes');
  }, 1000)});  

他发给我这个错误:Cannot read property 'edit' of undefined

感谢您帮助我。

1 个答案:

答案 0 :(得分:2)

好的,最终有效的代码是:

message.channel.send('my emote')
.then((msg)=> {
  setTimeout(function(){
    msg.edit('my others emotes');
  }, 1000)
});