Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
169 views
in Technique[技术] by (71.8m points)

javascript - message.member.roles.includes is not a function

I want the discord bot to allow the command to be run only if the person has one of the roles in the array.

const validroles = ['owner', 'Co-Owner']

    if(!message.member.roles.includes(validroles)) {
      return message.channel.send(`**${message.author}, You do not have permission to use this command**`)
}

It gives me the error TypeError: message.member.roles.includes is not a function

How do I fix this?

question from:https://stackoverflow.com/questions/66056066/message-member-roles-includes-is-not-a-function

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

message.member.roles returns a manager for the roles belonging to this member, so you need to use the .cache property to return the roles. .cache returns a Collection that doesn't have an .includes() method. I think you were looking for the .has() property that checks if an element exists in the collection:

if (!message.member.roles.cache.has(validrole.id)) {
  return message.channel.send(`**${message.author}, You do not have permission to use this command**`)

}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...