我爱编程

TypeScript中关于this的闭包问题

2017-02-09  本文已影响500人  拎壶冲da
class CoursePage {
       public init(){
            $("#rankType").on("change", function () {
            let type = parseInt($(this)).val());

            if (type == 1) {
                this.getRankQuestions();
            } else {
                this.getRankToStudentQuestions();
            }
        });
      }

     public getRankToStudentQuestions(){
     
     }
}

在运行时有个错误,这里的this会变成页面的DOM元素,导致无法执行函数getRankToStudentQuestions

public init() {
       var __this = this;

       $("#rankType").on("change", function () {
           let type = parseInt($("#rankType").val());

           if (type == 1) {
               __this.getRankQuestions();
           } else {
               __this.getRankToStudentQuestions();
           }
       });
}
  1. Typescript, jQuery and the ‘this’ context causing issues
  2. Typescript + Jquery Ajax + this](http://stackoverflow.com/questions/15662038/typescript-jquery-ajax-this)
上一篇下一篇

猜你喜欢

热点阅读