Reputation: 899
I am facing a strange angular js error. I am building an angular app. I am not very much proficient in angular. However I have successfully created some complex app. Now I am having a error in the browser console.
I can't understand the error a bit. The error shows stackFrame.js. But in my project there is no such js and I have searched web about it and I could not find any thing and the error is very fragile also. Once the error appears all angular activities are not working any more.
I can only attach the screen shot and the 'question_set.js (line 249)'
is my code and on that line I have used $scope.$apply()
.
One more thing I would like to say that I used jquery ajax instead of angular http service. Because In yii2
the angular http does not populate the post data properly. I only can provide the screen shot.
Thanks in advance. If anyone and kindly give any clue. Specially the angular masters.
Upvotes: 0
Views: 154
Reputation: 538
The error "href is null" seems to be a bug in Firebug according to this SO-post: AngularJS doesn't show specific errors in the Firebug console anymore . The error is hiding an actual error in your code, but you can't see it because of the bug in Firebug. Try the default developer tools in Firefox or try another browser to find out what your actual error is.
Upvotes: 0