コード実行中にerrorCount
プロパティを増加させるのに問題があります。私が抱えている問題は、$.ajax
リクエスト、より具体的にはaddError()
メソッドの内部で発生しています。Javascriptオブジェクトカウンタが予想通りにインクリメントしない
以下のコードを使用してerrorCount
の現在のカウントを確認すると、手動でエラーが発生したにもかかわらず、常に0
が返されます。しかし、私がaddError()
と呼んだ後、Ajaxメソッドの中でerrorCount
という値をチェックすると、それは1
のようになります。私は何を間違えたのですか?ここで
var boom = new test(settings, formData, search);
console.log(boom.errorCount);
boom.queueCalls(settings);
console.log(boom);
console.log(boom.errorCount);
は、オブジェクトコードです:
function test(a, b, c) {
this.settings = a;
this.formData = b;
this.search = c;
this.errorCount = 0;
}
test.prototype = {
constructor: test,
queueEmails:function(settings, formData, search) {
var url = '/example-url-endpoint';
var data = {postData: settings + "&" + formData + "&" + search};
this.sendRequest(url, data);
},
queueCalls:function(settings) {
var url = '/example-url-endpoint2';
this.sendRequest(url, settings);
},
addMessage:function(response) {
flashMessage(response.Message, response.Result);
},
addError:function() {
this.errorCount++;
},
sendRequest:function(url, data) {
var blah = this;
j$.ajax({
type: "POST",
url: url,
data: data,
dataType: 'json',
success: function(data) {
response = JSON.parse(data);
if(response.Result != 'error') {
blah.addMessage(response);
} else {
blah.addMessage(response);
blah.addError();
console.log(blah.errorCount);
}
},
error: function(e, textStatus, errorThrown) {
blah.addError();
console.log(blah.errorCount);
alert("There was an error creating the queue");
}
});
}
}
これは、コールが非同期であるため、エラーがトリックをした1 –