我正在尝试访问控制器外部的角度控制器范围。我正在使用外部js库执行某些操作,并在完成时执行某些回调。其中一个回调angular.element(document.findElementById('elementId').scope()
返回undefined
。
但是在第一个回调之后执行的第二个回调
angular.element(document.findElementById('elementId').scope()
返回有效范围。
以下是一些示例代码
<body id="authcontroller" ng-controller="AuthenticationController as auth">
<script>
window.externalLibObj = {
onCallback1: function(){
// Undefined value for scope
var scope = angular.element(document.getElementById('authcontroller')).scope();
},
onCallback2(): function(){
// Valid value for scope
var scope = angular.element(document.getElementById('authcontroller')).scope();
}
};
</script>
</body>
执行这些回调的顺序为onCallback1
,然后是onCallback2
。 var scope
中的onCallback1
未定义,但onCallback2
scope
为什么onCallback1
中的SQLSTATE[42883]: Undefined function: 7 ERROR: function field(integer, integer) does not exist
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
未定义?
感谢您的帮助
答案 0 :(得分:0)
这似乎是一个时间问题。执行第一个回调时,范围尚未准备就绪,但它是第二次回调。您应该更改逻辑并在正确加载相关视图时触发控制器内的回调。
在您的AuthenticationController中添加:
$scope.$on('$viewContentLoaded', function(){
// here define/fire your callbacks and you will be sure that everything is init
});
我希望它有所帮助