搜索

首页  >  问答  >  正文

从 Discord.js 14 线程启动消息中检索综合论坛数据

我对discord.js 与node 相对较新。我正在尝试从线程中读取第一条消息,我不知道,作为数组并稍后保存。因为我想稍后通过 API 传递数据。

我在这里打破了我的王冠。

我已经尝试过:

const { ChannelType } = require('discord.js');

client.on('threadCreate', async (thread) => {
    if (thread.type == ChannelType.GuildPublicThread) {
        // When a new forum post is created
        console.log(thread.parentId) // The forum channel ID
        console.log(thread.id) // The forum post ID
        console.log(thread.name) // The name of the forum post
    }
})

但我找不到获取 wohl 线程数据的方法。也许有人可以帮我解决这个问题?

P粉337385922P粉337385922238 天前326

全部回复(1)我来回复

  • P粉794851975

    P粉7948519752024-03-30 10:48:33

    雷雷

    回复
    0
  • 取消回复