我将angular2
与Typescript
一起使用。我试图创建一个可由其他类继承的base class
,并在基类中注入一个服务。到目前为止,我无法将ajaxService
injected
正确地放入base class
inherited
进入user class
。特别是在实例化用户,然后从save()
实例调用user
方法时,base class
:return _this._ajaxService.send(options);
中的以下行无效_ajaxService
未定义。
以下user class
扩展了base class
:
import {Base} from '../utils/base';
export class User extends Base {
// properties
id = null;
email = null;
password = null;
first_name = null;
last_name = null;
constructor(source) {
_super.CopyProperties(source, this);
}
}
以下是base class
:
import {Component} from 'angular2/core';
import {AjaxService} from './ajax.service';
@Component({
providers: [AjaxService]
})
export class Base {
constructor(private _ajaxService: AjaxService) { }
// methods
public static CopyProperties(source:any, target:any):void {
for(var prop in source){
if(target[prop] !== undefined){
target[prop] = source[prop];
}
else {
console.error("Cannot set undefined property: " + prop);
}
}
}
save(options) {
const _this = this;
return Promise.resolve()
.then(() => {
const className = _this.constructor.name
.toLowerCase() + 's';
const options = {
data: JSON.stringify(_this),
url: className,
action: _this.id ? 'PATCH' : 'POST';
};
debugger;
return _this._ajaxService.send(options);
});
}
}
除了AjaxService
没有注入基类之外,这种方法很好。我想这是有道理的,因为用户被实例化而不是基础。
那么当基础模块在另一个类上扩展时,如何在AjaxService
中使用Base module
?
我想当我实例化用户时,会调用用户类中的构造函数,但是不会调用注入服务的基类中的构造函数。
这里是AjaxService
:
import {Injectable} from 'angular2/core';
@Injectable()
export class AjaxService {
// methods
send(options) {
const endpoint = options.url || "";
const action = options.action || "GET";
const data = options.data || {};
return new Promise((resolve,reject) => {
debugger;
$.ajax({
url: 'http://localhost:3000' + endpoint,
headers: {
Authentication: "",
Accept: "application/vnd.app.v1",
"Content-Type": "application/json"
},
data: data,
method: action
})
.done((response) => {
debugger;
return resolve(response);
})
.fail((err) => {
debugger;
return reject(err);
});
});
}
}
答案 0 :(得分:9)
可以在基础中注入服务,但无论如何都必须从User类传入它。您无法从Base继承服务的实际实例化,因此您必须将其从User传递给Base。这不是TypeScript的限制,而是DI一般工作方式的一个特征。
这样的事情:
class User extends Base
constructor(service: AjaxService) {
super(service);
}
如果Base为您实例化了该服务,您将无法影响User的实例化。这将否定DI总体上的许多好处,因为您将通过将依赖关系控制委派给不同的组件而失去控制权。
据我所知,你可能试图通过在Base中指定它来减少代码重复,但这违背了DI的原则。
答案 1 :(得分:2)
你要注射的Angular 2中的每个类都必须注释。如果它不是组件,则必须使用created_at
注释对其进行注释。如果您注入已注入其他类的类,则必须为其创建提供程序。
@Injectable()
我为你创造了Plunker,我希望它能解决你的问题:
http://plnkr.co/edit/p4o6w9GjWZWGfzA6cv41?p=preview
(查看控制台输出)
PS。请使用Observable而不是Promises