Javascript SpiderMonkey语法错误:缺少:属性id之后:

问题描述 投票:-1回答:2

我正在使用蜘蛛猴制作一个简单的控制台棋牌游戏。但是我继续在我的枚举声明中得到错误SyntaxError: missing : after property id:

SyntaxError: missing : after property id:
ChessPiece.js:4:5      var Color = {
ChessPiece.js:4:5 ............^

下面是完整的代码

class ChessPiece
{
    var Color = {
        WHITE : 'W',
        BLACK : 'B'
    };

    var Piece = {
        PAWN : 'P',
        ROOK : 'R',
        KNIGHT : 'N',
        BISHOP : 'B',
        QUEEN : 'Q',
        KING : 'K'
    };

    constructor(color, piece)
    {
        this.color = color;
        this.piece = piece;
    }

    toString()
    {
        return this.color + this.piece;
    }
}

编辑:将枚举语法更新为var声明。

javascript spidermonkey
2个回答
0
投票

我想枚举不能在类体内定义。我能够在类定义之后添加它们。

class ChessPiece
{
    constructor(color, piece)
    {
        this.color = color;
        this.piece = piece;
    }

    toString()
    {
        return this.color + this.piece;
    }
}

ChessPiece.Color = {
    WHITE : 'W',
    BLACK : 'B'
};

ChessPiece.Piece = {
    PAWN : 'P',
    ROOK : 'R',
    KNIGHT : 'N',
    BISHOP : 'B',
    QUEEN : 'Q',
    KING : 'K'
};

0
投票

正确答案在这里:

js classes instance properties

必须在ClassBody声明之外定义静态类侧属性和原型数据属性

必须在构造函数中使用“this”声明实例变量。

© www.soinside.com 2019 - 2024. All rights reserved.