setting up a Django project with React.
Django,React搭建前后台框架主要有以下思路(which are common to almost every web framework):
React in its own “frontend” Django app: load a single HTML template and let React manage the frontend (difficulty: medium)
- 作者推荐,
Django REST as a standalone API + React as a standalone SPA (difficulty: hard, it involves JWT for authentication)
demo都没怎么有设置权限,,作者有给提供连接,Django的登陆, drf的权限和认证,Mix and match: mini React apps inside Django templates (difficulty: simple)
- 不推荐对新手