创建具有动态属性的类

时间:2019-12-17 20:43:18

标签: javascript

我为我的RPG游戏创建了一个类,我想问用户角色的名称,我该怎么做?

Pitch是我创建的基本名称,但我希望将Pitch替换为用户提供的名称

class Personnage {
  constructor(nom, sante, force) {
    this.nom = nom;
    this.sante = sante;
    this.force = force;
    this.xp = 0; 
  }
  
  const principal = new Personnage("Pitch", 150, 25);

感谢您的回答! (对不起,我的英文啊哈)

1 个答案:

答案 0 :(得分:-1)

请考虑使用此版本来实现您的尝试。

    class Personnage {
     var _nom;
     var _force;
     var _xp;
  constructor(nom, sante, force) {
    _nom = nom;
    _sante = sante;
    _force = force;
    _xp = 0; 
  }

  const principal = new Personnage(some_user_variable, 150, 25);

尽管不清楚您要做什么。这有帮助吗?