我想要做的是創建一個服務,使用模型來顯示警報。警報模型應該是其他地方無需的,但在該服務中,但我無法完成這項工作。我的服務:Angular2:服務與模型 - 「沒有提供模型」
import {Injectable, Inject} from "angular2/core";
import {AlertModel} from "../models/alert.model";
@Injectable()
export class AlertService {
constructor(@Inject(AlertModel) alertModel: AlertModel) {
}
public alert(){
this.alertModel.message = 'success';
//...
}
}
但我不斷收到此錯誤:
Uncaught (in promise): No provider for AlertModel! (UserComponent -> AlertService -> AlertModel)
我新的角度,我不明白這一點。我錯過了什麼?提前致謝!