admin管理员组文章数量:1342509
I'm getting the error listed below from Angular 1.5.7 on IE11. Angular IS NOT throwing any errors on Chrome. I tried the following:
- I've seen posts suggesting this is related to the interpolated values such as "{{model.label}}", so I added an ng-if to that, but it did not help.
- Upgraded to the latest Angular: 1.5.7.
Upgraded jquery since I see that listed in the error stack.
Error: Invalid argument. at interpolateFnWatchAction (http://localhost:8080/mdp-js/app/assets/angular/angular.js:9621:17) at interpolateFnWatcher (http://localhost:8080/mdp-js/app/assets/angular/angular.js:12295:17) at watchGroupAction (http://localhost:8080/mdp-js/app/assets/angular/angular.js:16952:13) at Scope.prototype.$digest (http://localhost:8080/mdp-js/app/assets/angular/angular.js:17286:23) at Scope.prototype.$apply (http://localhost:8080/mdp-js/app/assets/angular/angular.js:17552:13) at Anonymous function (http://localhost:8080/mdp-js/app/assets/angular/angular.js:17850:11) at pleteOutstandingRequest (http://localhost:8080/mdp-js/app/assets/angular/angular.js:5955:7) at Anonymous function (http://localhost:8080/mdp-js/app/assets/angular/angular.js:6234:7) undefined
I'm getting the error listed below from Angular 1.5.7 on IE11. Angular IS NOT throwing any errors on Chrome. I tried the following:
- I've seen posts suggesting this is related to the interpolated values such as "{{model.label}}", so I added an ng-if to that, but it did not help.
- Upgraded to the latest Angular: 1.5.7.
Upgraded jquery since I see that listed in the error stack.
Error: Invalid argument. at interpolateFnWatchAction (http://localhost:8080/mdp-js/app/assets/angular/angular.js:9621:17) at interpolateFnWatcher (http://localhost:8080/mdp-js/app/assets/angular/angular.js:12295:17) at watchGroupAction (http://localhost:8080/mdp-js/app/assets/angular/angular.js:16952:13) at Scope.prototype.$digest (http://localhost:8080/mdp-js/app/assets/angular/angular.js:17286:23) at Scope.prototype.$apply (http://localhost:8080/mdp-js/app/assets/angular/angular.js:17552:13) at Anonymous function (http://localhost:8080/mdp-js/app/assets/angular/angular.js:17850:11) at pleteOutstandingRequest (http://localhost:8080/mdp-js/app/assets/angular/angular.js:5955:7) at Anonymous function (http://localhost:8080/mdp-js/app/assets/angular/angular.js:6234:7) undefined
-
In wich directive are you using
"{{model.label}}"
? – adolfosrs Commented Jun 21, 2016 at 14:41 - See my answer below. It was from the Angular Block UI directive. – Mr Smith Commented Jun 21, 2016 at 16:35
3 Answers
Reset to default 9This is an Angular known issue as you can see in this thread.
As suggested, when using directives such as ng-placeholder
or ng-style
you can workaround with ng-attr-placeholder
or ng-attr-style
.
For the record, this error was being caused by the Angular Block UI directive: https://github./McNull/angular-block-ui . I removed that directive & the error stopped.
I had this problem, and it was because I was setting the content of an element in two different ways:
<span ng-bind-html="functionThatGeneratesHtml()">{{ functionThatGeneratesHtml() }}</span>
本文标签: javascriptquotError Invalid argumentquot on IE11Stack Overflow
版权声明:本文标题:javascript - "Error: Invalid argument." on IE11 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743667473a2518971.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论