打字稿:数据未分配给类变量

时间:2017-05-20 07:30:05

标签: angularjs http typescript this

我正在使用http调用来从后端获取数据。当它登录浏览器控制台时,我可以看到从后端返回的数据。 但是数据没有被分配给类变量。以下是我的代码 -  "使用严格的&#34 ;;

export class EditTranslationsController {
    static IID: string = "EditTranslationsController";
    static $inject: string[] = ["$http", "$scope", "$log"];

    private _welcome : string = "HELLO WORLD!";
    public data : any;
    constructor(private $http: angular.IHttpService, 
                private $log: angular.ILogService,
                private $scope: angular.IScope) {

       this.sendUpdatedData();
    }

    public sendUpdatedData = () => {
        this.$http({
                    method : 'POST',
                    url : '/test'
            }).then(function successCallback(response) {
                console.log(response.data);
                this.data = response.data;
            }, function errorCallback(response) {
                this.$log.error(response);
            });
    }
}

因此,如果我调试我的代码,我可以在行' this.data = response.data'中看到错误。 错误是-TypeError:无法设置属性'数据'未定义的。 我没有得到这个问题的解决方案。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:3)

我怀疑这是由于'this'实际上代表传递给'then'的函数。它没有引用该类。

尝试更改:

.then(function successCallback(response)

.then((response) =>