TS 这么写报错怎么办? Object is possibly 'null'

TS 这么写报错怎么办?    Object is possibly 'null'

window.document.getElementsByTagName('iframe')[0].contentWindow.location.pathname
应该怎么写

回答

你要确定一定有个 iframe,不会是空,那就加非空断言。

document.getElementsByTagName('iframe')[0]!.contentWindow!.location.pathname

以上是 TS 这么写报错怎么办? Object is possibly 'null' 的全部内容, 来源链接: utcz.com/a/64168.html

回到顶部