[Answer]-Can I call Django Manager Methods from AngularJS?

1👍

The point is that Angular is a client-side framework, and Django is server side. The only way they can communicate is via HTTP, which means that if you want Angular to call a Django manager method, you need to expose that via a URL connected to a view. As the comments say, one way to do that is via Django REST framework, but if that’s overkill for your use case you can always write the views yourself.

Leave a comment