我是AngularJS的新手,正在尝试添加Okta登录名。我收到以下错误:

shared.js:65 Uncaught TypeError: Cannot read property 'charAt' of undefined
at a.getDisplayName (shared.js:65)
at Okta.PageMonitor.<anonymous> (shared.js:3)...


我什至在碰到下面的console.log行之前也遇到了错误:

$scope.submit = function () {

      console.log('Error happens before this');


我如何找出这种情况发生的原因或原因?

最佳答案

使用known issue和浏览器插件时,这是Okta Sign-In Widgetlocalhost上托管的任何应用程序当前都会抛出:

Uncaught TypeError: Cannot read property 'charAt' of undefined

关于javascript - 在angularjs中,在Okta错误到达$ scope.submit的第一行之前就收到了,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44166985/

10-10 17:17