constructor(style : any | null = null) {
if (style instanceof UTSJSONObject) {
console.log("类型是:", "json")
}
}
此时出现报错 "instanceof" 表达式的右侧必须属于类型 "any",或属于可分配给 "Function" 接口类型的类型。
无论使用哪个平台的监测 都会出现这个错误
但又不影响实际运行,但是强迫症就受不了这个
请问各位大佬有没有解决方案
constructor(style : any | null = null) {
if (style instanceof UTSJSONObject) {
console.log("类型是:", "json")
}
}
此时出现报错 "instanceof" 表达式的右侧必须属于类型 "any",或属于可分配给 "Function" 接口类型的类型。
无论使用哪个平台的监测 都会出现这个错误
但又不影响实际运行,但是强迫症就受不了这个
请问各位大佬有没有解决方案
0 个回复