Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

请问一下 typescript 可以做到 限定传入的参数为几个常量中的一个?

请问一下 typescript 可以做到 限定传入的参数为几个常量中的一个?
比如希望传入的参数size是'L','M','S'中的一个


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

建议用枚举来描述

enum SizeType {
    L = 'Large',
    M = 'Medium',
    S = 'Small'
}

class Demo {

    public getSize(size: SizeType): void {
        console.log(size);
    }

}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...