导入服务的文件路径的正确语法是什么?我有一个数据服务,我想导入我的组件,它的文件路径在这里:
C:\Users\jlz\Documents\Git\Pantheon\Ceto-www\src\app\services\ceto-data\data.service.ts
我的组件文件位于:
C:\Users\jlz\Documents\Git\Pantheon\Ceto-www\src\app\querypageheader\querypageheader.component.ts
我的导入语句如下:
import { DataService } from './data.service';
我尝试了各种不同的文件路径,但没有一个是正确的。我得到的错误是我的文件路径找不到DataService。
答案 0 :(得分:3)
将其更改为,
import { DataService } from './../services/ceto-data/data.service';
您只需使用 VSCode
,它就会自动为您导入路径。