ts contentWindow err: ‘HTMLEleme

2022-04-28  本文已影响0人  chxuu
11111.jpg

解决:

// 1. 将contentWindow保存到变量
const iWindow = (this.$refs.editorFrame as HTMLIFrameElement).contentWindow; // 此时的iWindow类型为 Window | null
// 2. 将iWindow进行断言
iWindow as Window

// 完整代码
getIframeWindow(): Window {
    const iFrame = (this.$refs.editorFrame as HTMLIFrameElement).contentWindow;
    return iFrame as Window
  }
上一篇 下一篇

猜你喜欢

热点阅读