admin管理员组文章数量:1352177
Hello I am trying to use a discord.js button to link to a website
This is what I attempted to do
const row = new MessageActionRow()
.addComponents(
new MessageButton()
.setCustomId('whatever')
.setLabel('CLICK THIS')
.setLink("google")
.setStyle('LINK'),
);
However this does not work due to set link not being a function
And the documentation doesnt help me out with this
Hello I am trying to use a discord.js button to link to a website
This is what I attempted to do
const row = new MessageActionRow()
.addComponents(
new MessageButton()
.setCustomId('whatever')
.setLabel('CLICK THIS')
.setLink("google.")
.setStyle('LINK'),
);
However this does not work due to set link not being a function
And the documentation doesnt help me out with this
Share Improve this question asked Feb 11, 2022 at 17:11 FuriousFurious 831 gold badge2 silver badges10 bronze badges 1-
1
Is it not
setURL
instead? discord.js/#/docs/main/stable/class/MessageButton – Conor Reid Commented Feb 11, 2022 at 17:14
3 Answers
Reset to default 5Conor Reid is right
const row = new MessageActionRow()
.addComponents(
new MessageButton()
.setLabel('CLICK THIS')
.setURL("urlhere")
.setStyle('LINK'),
);
The correct function is setUrl()
MessageButton.setLink()
is not a function. Although I can see why this may be confusing because of the setStyle('LINK')
being required. The correct function is .setURL(url)
. The MessageButton documentation is available here https://discord.js/#/docs/main/stable/class/MessageButton
You need to use setURL
instead of setLink
It is in the docs
let url 'https://google.'
const row = new MessageActionRow()
.addComponents(
new MessageButton()
.setLabel('Google')
.setURL(url)
.setStyle('LINK')
);
本文标签: javascriptDiscordjs Button LinksStack Overflow
版权声明:本文标题:javascript - Discord.js Button Links - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743900443a2558578.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论