這是我真正的錯誤:如何解決Angular中沒有導出的成員錯誤?
Failed to compile.
C:/Examples/my-app/src/app/lake.service.ts (4,10): Module '"C:/Examples/my-app/src/app/lake-info"' has no exported member 'LAKES'.
這裏是lake-info
代碼:
import { Lake } from './lake';
export const LAKES: Lake[] = [
{ name: 'Manitoba'},
{ name: 'Khanka'}
];
這裏是lake.service.ts
代碼:
import { Injectable } from '@angular/core';
import { Lake } from './lake';
import { LAKES } from './lake-info';
@Injectable()
export class LakeService {
getLakes(): Lake[] {
return LAKES;
}
}
這裏是lake.ts
的代碼:
export class Lake {
name: string;
}
我在Angular網站上關注this tutorial。我的lake-info
文件基於this file。
讓我知道如果我需要添加更多的細節。
你怎麼導入湖泊? –
分享你的lake.service.ts! –
@GauravSrivastava我在添加代碼。 :) –