输出给我[object Object]

时间:2019-05-17 20:33:13

标签: javascript node.js

我正在寻找问题的答案-我的输出错误,我也不知道到底是什么错误。也许某些代码丢失了,我真的不知道-我还在学习。

我使用node.js(v10.15.3),我只想将console.log输出显示为txt文件。

我输出到txt文件的输出应显示如下:

[ Card { suit: 'Clubs', value: 3 },   
  Card { suit: 'Clubs', value: 8 },
  Card { suit: 'Diamonds', value: 9 },
  Card { suit: 'Hearts', value: 5 },
  Card { suit: 'Clubs', value: 10 } ]

但是在收到的文本文件中,我得到了

[object Object],[object Object],[object Object],[object Object],[object Object]

下面是我的代码:

console.log = function(msg) {
    fs.appendFile("OutputTask2and3.txt", msg, function(err) {
        if(err) {
          throw err;
        }
    });
}

class Card {
  constructor(suit, value) {
    this.suit = suit;
    this.value = value;
  }
}

class Deck {
  constructor() {
    this.deck = [];
  }

  createDeck(suits, values) {
    for (let suit of suits) {
      for (let value of values) {
        this.deck.push(new Card(suit, value));
      }
    }
    return this.deck;
  }

  shuffle() {
    let counter = this.deck.length,
      temp,
      i;

    while (counter) {
      i = Math.floor(Math.random() * counter--);
      temp = this.deck[counter];
      this.deck[counter] = this.deck[i];
      this.deck[i] = temp;
    }
    return this.deck;
  }

  deal() {
    let hand = [];
    while (hand.length < 5) {
      hand.push(this.deck.pop());
    }
    return hand;
  }
}

let suits = ["Spades", "Hearts", "Diamonds", "Clubs"];
let values = ["Ace", "Jack", "Queen", "King", 2, 3, 4, 5, 6, 7, 8, 9, 10];
let deck = new Deck();


deck.createDeck(suits, values);
deck.shuffle();

console.log(deck.deal())

2 个答案:

答案 0 :(得分:1)

使用JSON.parse()

 console.log(JSON.parse(deck.deal()));

答案 1 :(得分:0)

我认为您的问题是

fs.appendFile("OutputTask2and3.txt", msg, function(err) {
        if(err) {
          throw err;
        }
    });

msg强制转换为字符串。

我会尝试

fs.appendFile("OutputTask2and3.txt", JSON.stringify(msg, null, '\t'), function(err) {
        if(err) {
          throw err;
        }
    });

值得注意的是,您不会获得该类,只是保存了一个普通对象,但是当您需要从文件中读取并解析回来时,可以再次应用原型。