我的父窗口中有一个iframe。我在parent和iframe上使用angularjs。通常,当我在iframe中调用函数时,我使用
document.getElementById('myframe').contentWindow.function_name();
我不知道如何调用angularjs控制器函数。我在iframe中的控制器看起来像这样
app.controller('UserController',['$scope', function($scope){
this.showOptions = function(type){
alert(type);
}
如何从父级调用iframe中的this.showoptions
。