为什么"这个"在带有http promise

时间:2015-11-22 05:03:19

标签: javascript angularjs typescript

这是我的第一个打字稿和角度尝试,我遇到了一个问题。

我有一个以下列方式定义的模块控制器(.ts文件):

module app.controllers {
    "use strict"

    import services = app.services;

    export class calendarController {

        calBlock: any;
        deptId: number;
        calSvc: app.services.calendarService;

        static $inject = ["$scope", "calendarService"];

        constructor(isolateScope: directives.calendarScope, calSvc: services.calendarService) {

            this.deptId = isolateScope.deptId;
            this.calSvc = calSvc;

            calSvc.getMonthBlock(12, 2015, 1, this.deptId)
            .then(
                function (response) {
                    //promise fullfilled (regardless of outcome)                
                    this.calBlock = response.data;
                 },
                 function (error) {
                //handle errors
                    alert(error);
                 }   
             );
        }
    }
}

以下是此控制器所依赖的服务:

module app.services {
    "use strict"
    export class calendarService {

        private _http: ng.IHttpService;

        static $inject = ["$http"];

        constructor(http: ng.IHttpService) {
            this._http = http;            
        }

        getMonthBlock = function (month:number, year:number, calId:number, deptId:number) {

            //initialise service url
            var sURL = _sf.getServiceRoot('KrisisShifts') + "CalendarService/GetMonthCal/" + calId + "/" + deptId + "/" + month + "/" + year;
            //create config object for get function
            var config = {
                URL: sURL,
                method: "GET",
                dataType: 'json',
                headers: {
                    'ModuleId': _sf.getModuleId(),
                    'TabId': _sf.getTabId(),
                    'RequestVerificationToken': _sf.getAntiForgeryValue()
                }
            }
            //return the promise of the http.get function
            return this._http.get(sURL, config);

        }
    }
}

问题出现在控制器模块的以下行:

this.calBlock = response.data;

问题是 THIS 未定义,因此calBlock也未定义且jsConsole抛出错误:

  

TypeError:无法设置属性' calBlock'未定义的       在shift-calendar-controller.js?cdv = 28:14

我是javascript和angular and typescript的新手,所以我无法弄清楚为什么" 这个"未定义。我认为它是因为它包含在一个函数中。

我需要一种方法将reponse.data(来自$ http调用的json数组)分配给我的控制器的typescript类的calBlock属性。有人可以帮我理解为什么这个在响应函数中未定义以及我如何访问它?

由于

编辑:基于tymeJV的回答

的解决方案

这是重写的calBlock调用:

            calSvc.getMonthBlock(12, 2015, 1, this.deptId)
            .then((response) => {
                    //promise fullfilled (regardless of outcome)                
                    this.calBlock = response.data;
                },
            (error) => {
                    //handle errors
                    alert(error);
                }   
            );

1 个答案:

答案 0 :(得分:34)

因为this的上下文在回调中丢失了。使用typescript中的箭头函数来保留上下文!

calSvc.getMonthBlock(12, 2015, 1, this.deptId).then((response) => {

})