export interface Options {
str?: string
}
function f(opts: Options) {
if (!opts.str) throw new Error()
const s: string = opts.str
const x = ['a'].map(d => d + opts.str)
const y = ['a'].map(d => d.split(opts.str)) // error: opts.str: Type 'undefined' is not assignable to type 'string | RegExp'.
}
1
RRRSSS 2020-10-13 15:36:15 +08:00
因为 ts 不知道 opts.str 是 string 还是 undefined
|
2
love OP @RRRSSS
function f(opts: Options) { if (!opts.str) throw new Error() # A const s = opts.str const x = ['a'].map(d => d + opts.str) const y = ['a'].map(d => d.split(opts.str)) // error } 可是行 A 不是已经排除掉 undefined 的可能了吗? 下面的变量 s 的类型被自动推断为 string 而不是 string|undefined,看来原因就是 ts 子函数里所有的上层的类型断言会失效。 |
3
TanMusong 2020-10-14 20:18:27 +08:00
=>
专业名词忘了,反正已经算另一个域了,判断只在这个方法里起作用 |