select * from tablename
where case when col like '%green%' then 1 else 0 end +
case when col like '%t-shirt%' then 1 else 0 end +
case when col like '%custom%' then 1 else 0 end >= 2
为什么打字稿不能理解返回值是一个布尔值?
function f(x:boolean|string) { return x }
f(true) // boolean | string
它也无法理解。
我是否需要手动设置函数重载定义?
答案 0 :(得分:7)
Typescript不会根据函数中的类型保护推断出不同的返回类型。但是,您可以定义多个函数签名,让编译器知道输入参数类型和结果类型之间的链接:
function ff(x: boolean): boolean;
function ff(x: string): string;
// Implementation signature, not publicly visible
function ff(x: boolean | string): boolean | string {
return typeof x === 'boolean' ? true : 'str'
}