有誰知道是否可以在Angular模塊中導出枚舉? 如果沒有,有沒有在Angular模塊中發佈枚舉的最佳實踐?在Angular模塊中導出枚舉
// not working example
// i dont know how to export GreatEnum
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { GreatComponent } from './great.component';
import { GreatEnum } from './great.enum';
@NgModule({
imports: [
CommonModule
],
declarations: [GreatComponent ],
exports: [GreatComponent ]
})
export class GreatModule {
}
顯示您的枚舉文件 – porgo
像類:https://stackoverflow.com/a/46245869/5468463 – Vega
你怎麼看你需要導出?你爲什麼要用DI注入它? – jonrsharpe