在包含TypeError: Illegal invocation
使用的文件属性的模型上添加$watch
设置为true的objectEquality
时,会发生ngf-drop
。
另据报道here。
如何在不出现此错误的情况下$watch
模型?
最佳答案
我不得不说,永远不要尝试深入观察一个复杂的对象,这意味着:
$scope.$watch('aComplexObject', function(newVal, oldVal) {
// ...
}, true); // <<< this 'true' may cause the error.
关于angularjs - ng-file-upload得到TypeError : Illegal invocation with ngf-drop,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32034831/