私はjavascriptを初めて使用し、ajaxコールバック内でクラス変数にアクセスする方法を知りたいです。
success: function(data) {
var obj = jQuery.parseJSON(data);
this.baralho = obj.countBaralho;
私のクラス
var Placar = {
descarte : 0,
jogador1: 0,
jogador2: 0,
baralho: 0,
fetchFromServer: function(){
$.ajax({
url: baseUrl+'get-placar',
success: function(data) {
var obj = jQuery.parseJSON(data);
this.baralho = obj.countBaralho;
this.descarte = obj.countDescarte;
this.jogador1 = obj.numCartas1;
this.jogador2 = obj.numCartas2;
}
});
},
update: function() {
$('#num-cartas-1').html(this.jogador1);
$('#num-cartas-2').html(this.jogador2);
$('#cartas-restantes').html(this.baralho);
$('#num-cartas-descarte').html(this.descarte);
}
}
サーバーから値が設定されていません。どうすれば修正できますか?