私は RESTful API を使用しており、Javascript コードは jQuery の $.ajax() 呼び出しを介して REST クエリを作成しています。
以下に示すように、javascript Rest クラスを実装しました (大幅に簡略化されています)。
var Rest = function (baseUrlPath, errorMessageHandler) {
...
};
// Declare HTTP response codes as constants
Rest.prototype.STATUS_OK = 200;
Rest.prototype.STATUS_BAD_REQUEST = 400;
... // other rest methods
Rest.prototype.post = function (params) {
$.ajax({
type: 'POST',
url: params.url,
data: params.data,
dataType: 'json',
contentType: 'application/json; charset=utf-8',
beforeSend: this._authorize,
success: params.success,
error: params.error || this._getAjaxErrorHandler(params.errorMessage)
});
};
... // more rest methods
Rest.prototype.executeScenario = function (scenarioRef) {
var self = this;
this.post({
url: 'myurlgoeshere',
data: 'mydatagoeshere',
success: function (data, textStatus, xhr) {
if (xhr.status == 200) {
console.log("everything went ok");
}
},
error: function (xhr, textStatus, errorMsg) {
// TODO: constants
if (404 == xhr.status) {
self.errorMessageHandler("The scenario does not exist or is not currently queued");
} else if (403 == xhr.status) {
self.errorMessageHandler("You are not allowed to execute scenario: " + scenarioRef.displayName);
} else if(423 == xhr.status) {
self.errorMessageHandler("Scenario: " + scenarioRef.displayName + " is already in the queue");
}
}
});
};
コードは意図したとおりに機能しますが、コードを美しくして読みやすさを向上させるために、いくつかの定数を追加することにしました。たとえば、コード内に xhr.status == 200 または xhr.status == 400 などをチェックしている場所がいくつかあります。
クラス変数を次のように宣言できますRest.prototype.STATUS_OK = 200;
しかし、変数は編集可能であり、定数にする方法が思いつきません。たとえば、私のコードではthis.STATUS_OK = 123;
、変数を変更することができます。const キーワードをいじってみましたが、うまくいきませんでした。
私はこれを見ました:クラス定数を宣言する場所は?、しかし、それはあまり役に立ちませんでした。
これらのフィールドを変数ではなく定数リテラルにする方法について、誰かが私を正しい方向に向けることができますか?