Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialIgor Yamshchykov
24,397 PointsWhere the view name comes from ?
When we specify
reviews = serializers.HyperlinkedRelatedField(
many=True,
read_only=True,
view_name='apiv2:review-detail',
)
I can understand where apiv2 part comes from but where review-detail comes from ? Is this some kind of django-rest convention or something ?
Thanks
1 Answer
Tatiana Vasilevskaya
Python Web Development Techdegree Graduate 28,600 PointsViews URLs and corresponding names are generated by SimpleRouter. You can check the docs: http://www.django-rest-framework.org/api-guide/routers/#simplerouter
sourabh vashisht
498 Pointssourabh vashisht
498 Pointswhat if we are not using Router how to it then ?