不和谐随机链接发件人

时间:2019-09-21 12:05:25

标签: javascript discord

客户端意外标识符错误atm。 我得到一个未指定的值/变量(未定义valueToUse)。 在过去的4个小时里,我为此感到困惑。

我尝试过切换括号,减少了我使用的链接数量

});
function test () {

var values = [], the links normally go here but it hurt my head 
valueToUse = values[Math.floor(Math.random() * values.length
)
     client.on('message', msg =>{
     if (msg.content === "FFS")
     msg.send`??? ${valueToUse}` should send 3 question minds and the link/image from the link
   })};

发送随机链接。

1 个答案:

答案 0 :(得分:0)

client.on('message', msg =>{
    if (msg.content === "FFS"){
        var values = [];
        var valueToUse = values[Math.floor(Math.random() * values.length)];
        msg.send(`??? ${valueToUse}`);
    }
});

这应该有效。您正在定义在消息检查之外使用的价值。此外,您的代码有很多错误。