Discord Bot 명령 인수의 유형

유형 검사기 설치


npm install --save discord-arg-validator

구조를 봐



이 패키지를 구현하는 방법은 실제로 봇의 구조와 사용하는 프레임워크에 따라 다릅니다. 일반적으로 명령의 execute 기능에 유효성 검사를 추가하려고 합니다.

const { validate, String, Number, YesNo } = require("discord-arg-validator");

module.exports = {
    name: 'foo',
    description: 'bar',
    execute(message, args) {
        validate(args, [String, Number, YesNo]).then(() => /* Command logic here */).catch(() => message.channel.send("Make sure you use the command correctly!")))
    }
}

await를 사용할 수도 있으므로 명령 로그인을 .then() 체인에 넣을 필요가 없습니다.

좋은 웹페이지 즐겨찾기