The short answer. No, you’re not doing anything wrong by not-using a frontend framework with Django . There’s no unwritten law that everything has to turn into a SPA, or be rewritten from scratch in React. Your project can be awesome without them, and you won’t miss out on much.
Read moreCan MySQL be used with Django?
Django supports MySQL 5.7 and higher .
Read moreIs Django good with MongoDB?
PyMongo: PyMongo is the standard driver through which MongoDB can interact with Django. It is the official and preferred way of using MongoDB with Python. … Connect Django and MongoDB Using MongoEngine. Django’s ORMMongoEngineModelDocumentmodels.CharFieldfields.StringField()Django Integration With MongoDB Tutorial www.mongodb.com › compatibility › mongodb-and-django
Read moreCan I use React for frontend and Django for backend?
Notice that the URL is now http://127.0.0.1:8000. We have successfully connected our Django backend to a react frontend. You will need the Django REST framework to create the APIs the react frontend application will make use of to get backend data.9 Kas 2021
Read moreCan Django be used with React?
Django will be responsible for serving the API built using Django REST framework and React will consume these APIs using the Axios client or the browser’s fetch API . You’ll need to have two servers, both in development and production, one for Django(REST API) and the other for React (to serve static files).
Read more