最近,我一直试图制作不和谐机器人。一切顺利,直到我运行start.bat文件。 我一跑完就得到了这个:
client.on('ready', () => {
^
SyntaxError: Unexpected token )
at exports.runInThisContext (vm.js:73:16)
at Module._compile (module.js:443:25)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
at startup (node.js:129:16)
at node.js:814:3
以下是我用来启动机器人的示例代码:
const Discord = require("discord.js");
const client = new Discord.Client();
client.login('MzEzNzc1NzUwOTQxNTA3NTg0.C_-ilQ.vJyMW_Q2PjLLntwgifRRCnjPw88')
client.on('ready', () => {
console.log(`Logged in as ${client.user.username}!`);
});
client.on('message', msg => {
if (msg.content === 'ping') {
msg.reply('Pong!');
}
});
client.login('token');
我的start.bat文件:
@echo off
node bot.js
PAUSE
最后,这是版本信息:
2 info using npm@2.7.4
3 info using node@v0.12.2
任何线索是什么意思,以及我如何解决它?
答案 0 :(得分:0)
箭头函数语法(() => { }
)相对较新,仅自Node 4.0起支持。由于您使用的是过时版本的Node,因此我强烈建议您将其升级到最新版本,因为它已不再受到官方支持,并且您需要使用很多代码。 ll find online利用了较新版本的Node中引入的功能。
您可以从official Node.js site下载最新版本。
答案 1 :(得分:0)
我希望你已经知道了这一点,但在你宣布这个事件之前你就错过了一个分号。