22

我有这个打字稿代码:

    module MyPage {

    export class MyVm {

        ToDo : string;

        Load() {
            //can access todo here by using this:
            this.ToDo = "test";

            $.get("GetUrl", function (servertodos) {
                //but how do I get to Todo here??
                this.ToDo(servertodos); //WRONG ToDo..
            });
        }
    }
}

问题是,如何访问 $.get 回调中的 todo 成员字段?

4

3 回答 3

31

TypeScript 还支持保留词法范围的箭头函数。箭头函数产生与 Jakub 示例类似的代码,但更简洁,因为您不需要自己创建变量和调整用法:

这是使用箭头函数的示例:

$.get("GetUrl", (todos) => {
    this.ToDo(todos);
});
于 2012-11-17T15:30:23.650 回答
11

与您在 javascript 中执行此操作的方式相同

export class MyVm {
    ToDo : string;

    Load() {
        //can access todo here by using this:
        this.ToDo = "test";
        var me = this;

        $.get("GetUrl", function (todos) {
            //but how do I get to Todo here??
            me.ToDo(todos); //WRONG ToDo..
        });
    }
}
于 2012-11-17T13:22:05.670 回答
1

芬顿是对的。

但你也可以这样做:

 mycallback(todos, self) { self.todo(todos)); }
 $.get('url', mycallback(todos, this));
于 2019-02-04T21:49:12.370 回答