Javascript:此代码片段的作用和错误代码 Uncaught TypeError: allEnemies.forEach 不是函数

标签 javascript jquery

我正在努力完成一个简单的 Canvas 游戏。我收到此错误:

未捕获类型错误:allEnemies.forEach 不是函数

为什么我会收到此错误?

我在下面展示了我如何声明所有敌人。根据说明,allEnemies 应该是一个对象数组。

是我对 allEnemies 的声明错误,还是对象 Enemy 声明错误?

这是 Enemy 的声明,我认为他们正在尝试声明一个对象(我从未见过这样的对象声明)我认为这是 IIFE 正确的吗?

var Enemy = function() {
    // Variables applied to each of our instances go here,
    // we've provided one for you to get started

    // The image/sprite for our enemies, this uses
    // a helper we've provided to easily load images
    this.sprite = 'images/enemy-bug.

这是整个 app.js 文件:

    // Enemies our player must avoid
var Enemy = function() {
    // Variables applied to each of our instances go here,
    // we've provided one for you to get started

    // The image/sprite for our enemies, this uses
    // a helper we've provided to easily load images
    this.sprite = 'images/enemy-bug.png';
}

// Update the enemy's position, required method for game
// Parameter: dt, a time delta between ticks
Enemy.prototype.update = function(dt) {
    // You should multiply any movement by the dt parameter
    // which will ensure the game runs at the same speed for
    // all computers.
}

// Draw the enemy on the screen, required method for game
Enemy.prototype.render = function() {
    ctx.drawImage(Resources.get(this.sprite), this.x, this.y);
}

// Now write your own player class
// This class requires an update(), render() and
// a handleInput() method.
var Player = function() {
    // Variables applied to each of our instances go here,
    // we've provided one for you to get started


    this.sprite = 'images/char-pink-girl.png';
}

// Now instantiate your objects.
// Place all enemy objects in an array called allEnemies
// Place the player object in a variable called player
var allEnemies = [];
allEnemies = Enemy;

var player = Player;


// This listens for key presses and sends the keys to your
// Player.handleInput() method. You don't need to modify this.
document.addEventListener('keyup', function(e) {
    var allowedKeys = {
        37: 'left',
        38: 'up',
        39: 'right',
        40: 'down'
    };

    player.handleInput(allowedKeys[e.keyCode]);
});

这是给我错误类型的代码行:

allEnemies.forEach(function(enemy) {

这是函数声明的其余部分:

function updateEntities(dt) {
        allEnemies.forEach(function(enemy) {
            enemy.update(dt);
        });
        player.update();
    }

最佳答案

第 1 行 allEnemies是一个数组。
下一行变成 Enemy .

var allEnemies = [];
allEnemies = Enemy;

Enemy是一个函数。
allEnemies现在是一个函数。

Function.prototype.forEach 是 undefined

关于Javascript:此代码片段的作用和错误代码 Uncaught TypeError: allEnemies.forEach 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35103037/

相关文章:

javascript - 仅使用 jquery 垂直固定 div

javascript - 谷歌地图 API v3 : Getting geometry of a drawn shape

javascript - Html5 音频标签在本地 IIS 中无法用于 Google translate_tts

javascript - 点击()开始加载

javascript - 如何提醒 Tic Tac Toe 中的赢家?

javascript - 将数据属性添加到 a 标记并使用 JQuery 检索它

IE8 中的 JavaScript "Member not found"错误

javascript - 错误 : Cannot find Module '../utils/composeObjs' after installing generator-stencil globally

javascript - 电子邮件提交输入清除/css 在 iphone Safari 或 Chrome 上不起作用

javascript - JQuery 冲突不起作用