开发者问题收集

TypeError:Object.hasOwn 不是一个函数

2022-07-23
24699

我尝试使用新版 discord.js 编写一个机器人,但当我尝试登录时,它提示我此错误

/home/max/Schreibtisch/Discord Bots/Perplex/node_modules/discord.js/src/util/Util.js:279
    if (!Object.hasOwn(given, key) || given[key] === undefined) {
                ^

TypeError: Object.hasOwn is not a function
    at mergeDefault (/home/max/Schreibtisch/Discord Bots/Perplex/node_modules/discord.js/src/util/Util.js:279:17)
    at new BaseClient (/home/max/Schreibtisch/Discord Bots/Perplex/node_modules/discord.js/src/client/BaseClient.js:25:20)
    at new Client (/home/max/Schreibtisch/Discord Bots/Perplex/node_modules/discord.js/src/client/Client.js:43:5)
    at Object.<anonymous> (/home/max/Schreibtisch/Discord Bots/Perplex/src/bot.js:26:16)
    at Module._compile (node:internal/modules/cjs/loader:1108:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1137:10)
    at Module.load (node:internal/modules/cjs/loader:988:32)
    at Function.Module._load (node:internal/modules/cjs/loader:828:14)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:76:12)
    at node:internal/main/run_main_module:17:47

这是我的机器人代码

const { Client, GatewayIntentBits } = require('discord.js');
const client = new Client({ intents: [GatewayIntentBits.Guilds] });

client.on('ready', () => {
    console.log(`Logged in as ${client.user.tag}!`);
});

client.on('interactionCreate', async (interaction) => {
    if (!interaction.isChatInputCommand()) return;

    if (interaction.commandName === 'ping') {
        await interaction.reply('Pong!');
    }
});

client.login('token');
1个回答

我不认为此代码片段中存在错误。如果这是您的 src/bot.js 文件,则似乎没有问题。

但是,错误显示 “Object.hasOwn 不是函数” ,并且 Object.hasOwn 仅在 node.js v16.9.0 之后可用。

Discord.js v14 需要 node.js 16.9 或更高版本,因此请确保您已更新。要检查您的节点版本,请在终端或命令提示符中使用 node -v ,如果它比此版本旧,请 更新它

有关更多重大更改,您可以查看此答案: 升级到 v14 时 Discord.js v13 代码中断

Zsolt Meszaros
2022-07-23