2017-05-28 59 views
0

如何從其他組件導入組件服務?Angular Cli - 從anoter組件導入組件服務

這是我的項目結構

enter image description here

我想導入 「organization.service」 對用戶form.component。

我試圖

import { OrganizationService } from '.../organizations/shared/organization.service'; 

沒有成功,我得到一個錯誤說 '無法找到模塊'

謝謝!

回答

1

嘗試:

import { OrganizationService } from '../../organizations/shared/organization.service'; 

兩個點,而不是三個,你需要去多一個層次。