Discord Bot 명령 인수의 유형
2422 단어 tutorialdiscordjavascript
유형 검사기 설치
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()
체인에 넣을 필요가 없습니다.
Reference
이 문제에 관하여(Discord Bot 명령 인수의 유형), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/shadowtime2000/types-to-your-discord-bot-command-arguments-21f9
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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!")))
}
}
Reference
이 문제에 관하여(Discord Bot 명령 인수의 유형), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/shadowtime2000/types-to-your-discord-bot-command-arguments-21f9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)