54

我有这个使用基本 JavaScript 的 iframe:

<iframe id="upload_iframe" name="upload_iframe" onLoad="uploadDone();"></iframe>

uploadDone();当 iframe 的内容已加载时触发该方法。

我如何在 Angular 中做同样的事情?我想在 iframe 加载时调用控制器上的一个函数,但ng-onload到目前为止我还没有看到。

4

5 回答 5

119

评论一年前的问题。对于 iframe 超过 1 个的情况,我需要将“onload”事件绑定到。我做了这个方法。

指示

APP.directive('iframeOnload', [function(){
return {
    scope: {
        callBack: '&iframeOnload'
    },
    link: function(scope, element, attrs){
        element.on('load', function(){
            return scope.callBack();
        })
    }
}}])

控制器

APP.controller('MyController', ['$scope', function($scope){

    $scope.iframeLoadedCallBack = function(){
        // do stuff
    }
}]);

DOM

<div ng-controller="MyController">
    <iframe iframe-onload="iframeLoadedCallBack()" src="..."></iframe>
</div>
于 2014-05-30T06:09:45.230 回答
29

尝试将控制器中的函数定义为:

window.uploadDone=function(){
  /* have access to $scope here*/
}
于 2013-04-08T15:12:36.637 回答
26

对于使用 Angular 2+ 的任何人,这很简单:

<iframe (load)="uploadDone()"></iframe>

没有全局功能,适用于多个 iframe。

于 2019-09-11T21:16:11.067 回答
4

对于任何在这里结束的人来说,ng-onload插件是解决这个问题的完美解决方案。它不会污染全局命名空间,并且当您只想调用一个简单的作用域函数时,也不需要您创建一次性指令。

于 2015-12-30T18:12:23.410 回答
1

对于那些动态注入 iframe 的人,您可以执行以下操作

html...

<div #iframeContainer></div>

呸...

@Component({
  selector: 'app-iframe-onload',
  templateUrl: './iframe-onload.component.html'
})
export class IframeOnload implements AfterViewInit {

@ViewChild('iframeContainer') iframeContainer: ElementRef;

ngAfterViewInit(): void {
  this.injectIframe();
}

private injectIframe(): void {
  const container = this.iframeContainer.nativeElement;
  const iframe = document.createElement('iframe');
  iframe.setAttribute('width', '100%');
  iframe.setAttribute('src', 'https://example.com/');
  iframe.setAttribute('height', 'auto');
  iframe.setAttribute('frameBorder', '0');
  iframe.addEventListener('load', this.iframeOnLoadtwo);
  container.appendChild(iframe);

}

public iframeOnLoadtwo(): void {
  console.log('iframe loaded...');
}

}

于 2021-03-14T21:35:08.560 回答