0
模塊A角2依賴注入與共享組件
declarations: [myComponent]
providers: [myServiceA]
模塊B
declarations: [myComponent]
providers: [myServiceB]
myComponent的由模塊A的共享和B
class myComponent {
constructor(?) {}
}
myServiceA和myServiceB共享相同的API。這個想法是,myServiceA在本地存儲數據(可以說localstorage) 和myServiceB將數據存儲在遠程服務器上(可以說Firebase)。
如何根據加載組件的模塊注入正確的myService?
這可能會工作,如果你讓模塊懶加載。否則我認爲這很困難。 –