gpt4 book ai didi

node.js - Object.values 不是函数错误

转载 作者:太空宇宙 更新时间:2023-11-03 22:59:35 24 4
gpt4 key购买 nike

我正在创建一个不和谐的机器人只是为了搞乱它,我正在使用 Express 创建一个网站来控制它。但当我使用此作为哈巴狗“代码”从按钮单击转移到另一个页面时,我不断收到“Object.values 不是函数”

input(type="button", value="关闭机器人", onclick='window.location.href = "website";' ,id='offButton')

索引.js:

var express = require('express');
var router = express.Router();
const DISCORD = require('discord.js');

const CLIENT = new DISCORD.Client();

const TOKEN = 'discord token';

//GET home page.
router.get('/', function(req, res) {
res.render('index', {
title: 'Express'
});
});

router.get('/off', function(req, res) {
CLIENT.destroy();
res.redirect('go back to home'); << where error is
});

CLIENT.on('ready', () => {
console.log('Ready')
});

CLIENT.on('message', message => {
if (message.content === 'ping') {
message.channel.send('pong');
} else if (message.content === 'off' && message.member.permissions.has('ADMINISTRATOR')) {
CLIENT.destroy();
} else if (message.content.charAt(0) === '!') {
message.channel.send('what?')
}
});

CLIENT.login(TOKEN);

module.exports = router;

最佳答案

您可能应该升级您的node.js。您至少需要 7.0.0 版本才能支持 Object.values()。请参阅https://node.green/#ES2017-features-Object-static-methods-Object-values

关于node.js - Object.values 不是函数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51595814/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com