命令后获取完整的参数列表(Discord.js)

2022-01-10 00:00:00 discord javascript discord.js

你好优秀的互联网人

我正在编写代码来设置我的机器人在 discord.js 中的状态.我想知道如何获取用户的完整 args 列表并将其放入一个 let 语句中,比如说 (args[0] + ' ' + args[1], etc)

I am writing code to set the status of my bot in discord.js. I am wondering how I can take a user's full args list and put it into one let statement, like saying (args[0] + ' ' + args[1], etc)

这是我当前的代码

谢谢你,希望你有一个美好的一天

Thank you, hope you have a great day

let statgame = (args[0])
    client.user.setActivity(statgame);

推荐答案

鉴于 args 是一个数组,JS 提供了一个 join 函数来为你做这件事

Given args is an array, JS provides a join function that does this for you

let joinedArgs = args.join(" ");

第一个参数是分隔每个元素的字符串

The first argument is the string that separates each element

相关文章