我是 typescript 和 angular.js 的新手,我正在努力处理 http get 请求。我正在为angular的类型定义使用DefiniteTyped 。
我的控制器代码如下所示:
module game.Controller {
'use strict';
export interface IGameScope extends ng.IScope {
vm: GameCtrl;
}
export class GameCtrl {
private bonus: any;
private http: any;
constructor($scope: IGameScope, $http: ng.IHttpService, $location: ng.ILocationService) {
$scope.vm = this;
this.http = $http;
}
doBet() {
this.http.get('http://localhost:9000/db').success(function(data: any, status: any) {
this.bonus = data;
}
);
}
}
}
我的看法是这样的:
<button ng-click="vm.doBet()">bet</button>
<div><span>bonus: {{ vm.bonus }}</span></div>
当我在没有 http 请求的情况下更改奖励变量时,视图模型绑定工作正常。但是,当我尝试在 get 请求的成功函数中更新奖励变量时,出现以下错误:
TypeError: Cannot set property 'bonus' of undefined
如何实现更新成功函数中的变量?
如果有更好/更清洁的方法或实践来更新请求数据,我也将不胜感激