nodejs + typescript + jsonwebtoken JWT 时使用res内部变量时报错Property 'uid' does not exist on type 'unknown'
.
error TS2339: Property 'uid' does not exist on type 'unknown'.
例子:
verifyToken(token).then(
res => {
res.uid
// error TS2339: Property 'uid' does not exist on type 'unknown'.
}
)
解决办法
出现这种问题是因为 ts 无法判断 res 的内部参数所以我们需要定义一个接口
interface Ires {
uid: string
name: string
psw: string
email: string
iat: number
exp: number
}
verifyToken(token).then(
res => {
let { uid } = res as Ires
console.log(uid)
}
)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)