我使用来自 ASP .NET Rest API 的 NSWAG 生成了一个 javascript 客户端。但是当我尝试调用 API 方法时,我发现了一些错误。
原因中的错误是:TypeError:无法设置未定义的属性“baseUrl”。
var AuthClient = (function () {
function AuthClient($http, baseUrl) {
this.baseUrl = undefined;
this.http = null;
this.jsonParseReviver = undefined;
this.http = $http;
this.baseUrl = baseUrl !== undefined ? baseUrl : "";
};
AuthClient.prototype.login = function (auth) {
var _this = this;
var url_ = this.baseUrl + "/api/v1/auth/login";
var content_ = JSON.stringify(auth ? auth.toJS() : null);
return this.http({
url: url_,
method: "POST",
data: content_,
transformResponse: [],
headers: {
"Content-Type": "application/json; charset=UTF-8",
"Accept": "application/json; charset=UTF-8"
}
}).then(function (response) {
return _this.processLogin(response);
}, function (response) {
if (response.status)
return _this.processLogin(response);
throw response;
});
};
...}());
exports.AuthClient = AuthClient;
在我的角度代码中,我正在做:
var client = AuthClient('http://localhost:14959/');
var call = client.prototype.login(data);
我已经调试了应用程序,它进入了函数 AuthClient,我也尝试将其更改为此,但问题仍然存在:
function AuthClient($http, baseUrl) {
this.baseUrl = baseUrl;
};
我也收到这个错误:Uncaught ReferenceError: exports is not defined
我不知道它是否与它有关。如果不只是忽略。
错误跟踪:
TypeError: Cannot set property 'baseUrl' of undefined
at AuthClient (RenterLogApiBackendClient.js:19)
at b.$scope.login (HomeController.js:16)
at fn (eval at compile (angular.min.js:1), <anonymous>:4:206)
at b (angular.js:16123)
at e (angular.js:26490)
at b.$eval (angular.js:17913)
at b.$apply (angular.js:18013)
at HTMLFormElement.<anonymous> (angular.js:26495)
at HTMLFormElement.dispatch (jquery-3.1.1.min.js:3)
at HTMLFormElement.q.handle (jquery-3.1.1.min.js:3)