使用 TypeScript 返回一个 AngularJS $q promise
Returning an AngularJS $q promise with TypeScript
我有一个服务用返回延迟对象的函数包装 $http。
我的界面:
export interface MyServiceScope {
get: ng.IPromise<{}>;
}
我的class:
export class MyService implements MyServiceScope {
static $inject = ['$http', '$log'];
constructor(private $http: ng.IHttpService,
private $log: ng.ILogService,
private $q: ng.IQService) {
this.$http = $http;
this.$log = $log;
this.$q = $q;
}
get(): ng.IPromise<{}> {
var self = this;
var deferred = this.$q.defer();
this.$http.get('http://localhost:8000/tags').then(
function(response) {
deferred.resolve(response.data);
},
function(errors) {
self.$log.debug(errors);
deferred.reject(errors.data);
}
);
return deferred.promise;
}
}
编译失败,出现以下错误:
myservice.ts(10,18): error TS2420: Class 'MyService' incorrectly implements interface 'MyServiceScope'.
Types of property 'get' are incompatible.
Type '() => IPromise<{}>' is not assignable to type 'IPromise<{}>'.
Property 'then' is missing in type '() => IPromise<{}>'.
作为参考,here is the IPromise 来自 DefinitelyTyped 的定义。 IQService.defer()
调用 returns 一个 IDeferred
对象,然后 deferred.promise
returns IPromise 对象。
我不确定我是否在我的界面中使用了错误的定义,或者没有以相同的方式返回延迟对象。任何输入将不胜感激!
在您的界面中,您定义了一个 属性 get
,在服务实现中它是一个函数 get()
。你可能想要的是一个函数,所以界面应该是:
export interface MyServiceScope {
get(): ng.IPromise<{}>;
}
我有一个服务用返回延迟对象的函数包装 $http。
我的界面:
export interface MyServiceScope {
get: ng.IPromise<{}>;
}
我的class:
export class MyService implements MyServiceScope {
static $inject = ['$http', '$log'];
constructor(private $http: ng.IHttpService,
private $log: ng.ILogService,
private $q: ng.IQService) {
this.$http = $http;
this.$log = $log;
this.$q = $q;
}
get(): ng.IPromise<{}> {
var self = this;
var deferred = this.$q.defer();
this.$http.get('http://localhost:8000/tags').then(
function(response) {
deferred.resolve(response.data);
},
function(errors) {
self.$log.debug(errors);
deferred.reject(errors.data);
}
);
return deferred.promise;
}
}
编译失败,出现以下错误:
myservice.ts(10,18): error TS2420: Class 'MyService' incorrectly implements interface 'MyServiceScope'.
Types of property 'get' are incompatible.
Type '() => IPromise<{}>' is not assignable to type 'IPromise<{}>'.
Property 'then' is missing in type '() => IPromise<{}>'.
作为参考,here is the IPromise 来自 DefinitelyTyped 的定义。 IQService.defer()
调用 returns 一个 IDeferred
对象,然后 deferred.promise
returns IPromise 对象。
我不确定我是否在我的界面中使用了错误的定义,或者没有以相同的方式返回延迟对象。任何输入将不胜感激!
在您的界面中,您定义了一个 属性 get
,在服务实现中它是一个函数 get()
。你可能想要的是一个函数,所以界面应该是:
export interface MyServiceScope {
get(): ng.IPromise<{}>;
}