[Fixed]-AngularJS Routing not working properly with Django

1👍

The Error message is telling you exactly what’s wrong:

Unknown provider: ProfileProvider <- Profile <-
ProfileSettingsController

Your ProfileSettingsController is injecting Profile, which doesn’t appear to exist, it doesn’t exist in your provided javascript either.

I would suggest checking through your code and making sure you have the Profile factory/service actually defined.

Leave a comment