我创建了一个枚举,但在 VS15 中导入和使用枚举时遇到问题。
这是 enums.ts 中包含的枚举:
enum EntityStatus {
New = 0,
Active = 1,
Archived = 2,
Trashed = 3,
Deleted = 4
}
Visual Studio 甚至无需导入即可看到此枚举,因此不会给出编译时错误。但是在运行时,会抛出一个错误
Cannot read property 'Archived' of undefined.
所以现在我尝试像导入其他类一样导入它:
import {EntityStatus} from "../../core/enums";
Visual Studio 现在给出编译时错误:
"...enums is not a module ..."
那么如何导入枚举呢?
原文由 Greg Gum 发布,翻译遵循 CC BY-SA 4.0 许可协议
我错过了 export 关键字:
然后它按预期工作。