我有这个使用基本 JavaScript 的 iframe:
<iframe id="upload_iframe" name="upload_iframe" onLoad="uploadDone();"></iframe>
uploadDone();
当 iframe 的内容已加载时触发该方法。
我如何在 Angular 中做同样的事情?我想在 iframe 加载时调用控制器上的一个函数,但ng-onload
到目前为止我还没有看到。
评论一年前的问题。对于 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>
尝试将控制器中的函数定义为:
window.uploadDone=function(){
/* have access to $scope here*/
}
对于使用 Angular 2+ 的任何人,这很简单:
<iframe (load)="uploadDone()"></iframe>
没有全局功能,适用于多个 iframe。
对于任何在这里结束的人来说,ng-onload插件是解决这个问题的完美解决方案。它不会污染全局命名空间,并且当您只想调用一个简单的作用域函数时,也不需要您创建一次性指令。
对于那些动态注入 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...');
}
}