第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

TypeError:無法讀取未定義的屬性“hasPermission”

TypeError:無法讀取未定義的屬性“hasPermission”

縹緲止盈 2022-10-08 17:14:37
我正在制作一個(gè)不和諧的機(jī)器人,我主要學(xué)習(xí)了 discord.js 的 v11,當(dāng)我在不和諧中創(chuàng)建一個(gè) unban 命令時(shí),當(dāng)我完成時(shí),我運(yùn)行了該命令,它給出了錯(cuò)誤“TypeError:無法讀取屬性” hasPermission' of undefined",這是我的代碼。順便說一句,它是一個(gè)命令處理程序module.exports = {    name : 'unban',    execute(client, message, args){       if(!message.member.hasPermission(["BAN_MEMBERS"])) return message.channel.send("You dont have permission to perform this command!")    if(isNaN(args[0])) return message.channel.send("You need to provide an ID.")    let bannedMember =  client.users.fetch(args[0])        if(!bannedMember) return message.channel.send("Please provide a user id to unban someone!")    let reason = args.slice(1).join(" ")        if(!reason) reason = "No reason given!"    if(!message.guild.me.hasPermission(["BAN_MEMBERS"])) return message.channel.send("I dont have permission to perform this command!")|    message.delete()    try {        message.guild.members.unban(bannedMember, reason)        message.channel.send(`**${bannedMember.tag}** has been unbanned from the guild!`)    } catch(e) {        console.log(e.message)    }}No idea what the problem is.
查看完整描述

1 回答

?
ibeautiful

TA貢獻(xiàn)1993條經(jīng)驗(yàn) 獲得超6個(gè)贊

它看起來像message.guild.me.hasPermission并且message.member.hasPermission都是有效的方法。您確定message變量已定義嗎?檢查您的命令處理程序。



查看完整回答
反對(duì) 回復(fù) 2022-10-08
  • 1 回答
  • 0 關(guān)注
  • 212 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)