0
是否有可能將枚舉類型作爲參數傳遞給裝飾器函數?Typescript:枚舉類型作爲裝飾器參數
export class A {
@AsEnum(SomeEnum)
name: string;
}
export enum SomeEnum { A, B, C}
export function AsEnum(type): any {
return (target, propert) => {
return {
get: function(): Object {
return type; // type is undefined
},
}
};
}
這裏的類型總是未定義的。
很多thx,這有助於 –