0
カード[]配列に「ヒット」ボタンが選択されているときに、新しいカードを押してください。私は方法の無数を試みたが、この単純な問題を釘付けにすることはできません。援助は非常に重要です!角4 - >配列にプッシュ
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'app';
deck: any;
cards = [];
hand = 0;
cardCount: number;
constructor(private _data: DataService){
console.log("Data Service ready to query api");
this.cards = [];
};
newDeck(){
this._data.newDeck().subscribe(res => this.deck = res.json());
}
deal(cardCount){
this._data.deal(cardCount, this.deck.deck_id).subscribe(response => this.cards = response.json());
if(this.cards) {
this.cards.push(this.cards);
}
}
}
ねえ!私もこれを試しましたが、エラーが出ます - > ERROR TypeError:_this.cards.pushは関数ではありません –
上記のコードを修正しましたか? – Dhyey