标签: node.js discord discord.js syntax-error bots
This is the problem i get while trying to use the node discord .js command idk how to fix it
答案 0 :(得分:1)
选择红线中选择的全部内容,然后按实际引用。这将其封装到引号中。对所有其他人重复。
例如,您的第一行 const Discord = require(''discord.js'')
const Discord = require(''discord.js'')
=> 需要改成const Discord = require('discord.js')
const Discord = require('discord.js')
此外,如果您确实希望打印引文,您可以使用
console.log('\'hi\'')。这会在控制台中打印消息周围的引号。
console.log('\'hi\'')