3

我使用来自 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)
4

2 回答 2

2

在您的AuthClient函数内部,您需要实际返回您的构造函数,然后使用以下命令调用它new

var AuthClient = (function () {
    // ...

    return AuthClient;
}());

var client = new AuthClient('http://localhost:14959/');

您可能可以省略该exports行。

于 2017-02-07T18:43:46.197 回答
1

此行不是必需的:

this.baseUrl = undefined;

如果你再次遇到这个:

this.baseUrl = baseUrl !== undefined ? baseUrl : "";

最好的方法是:

this.baseUrl = '' || this.baseUrl;

并且AuthClient你有两个参数,其中第二个参数是baseUrl. 但是当你设置它时,你只使用一个参数。

所以在其中定义另一个函数,然后使用参数。

于 2017-02-07T18:34:03.157 回答