반응 구성요소의 iframe 내용 설정 방법 React 컴포넌트에서 iframe의 내용을 설정하려고 하는데 설정할 수 없습니다.iframe 로드가 완료되면 호출해야 하는 함수를 포함하는 컴포넌트가 있습니다.그 기능에서 콘텐츠를 설정하고 있습니다만, 온로드 기능이 전혀 호출되지 않는 것 같습니다.Chrome 브라우저로 테스트하고 있습니다.다음을 시도하고 있습니다. var MyIframe = React.createClass({ componentDidMount : function(){ var iframe = this.refs.iframe.getDOMNode(); if(iframe.attachEvent){ iframe.attacheEvent("onload", this.props.onLoad); }else{ if..