Я пытаюсь получить доступ к contentWindow.PDFViewerApplication
элемента React iframe
следующим образом
<iframe ref={
(it)=>{
console.log(it.contentWindow)
console.log(it.contentWindow.PDFViewerApplication)
}
}
src={reader+'?file='} type="application/pdf"/>
, и я вижу приложение PDFViewerApplication в консоли, но не могу получить доступ к полю. Журналы undefined
.
![console output in developer tools](https://i.stack.imgur.com/FDkil.png)
Кто-нибудь знает проблему?