which is easier to create a CRUD app in?
im finding Django to be more strait forward? why does React need so many steps to create/update/add/remove products/items?
For further actions, you may consider blocking this person and/or reporting abuse
which is easier to create a CRUD app in?
im finding Django to be more strait forward? why does React need so many steps to create/update/add/remove products/items?
For further actions, you may consider blocking this person and/or reporting abuse
Muchhal Sagar -
Dmitry Romanoff -
Piotr -
Roshan Kr Soni -
Top comments (3)
Django and React can work side by side. React does not PERFORM the CRUD operations (except if you are working with firebase or couchdb may be) but other than that you need a server side language like Django to connect with a database and manipulate data.
ok, im referont to creating a user input way to just add a product vs adding info to map over in useState manually. or, is there a way to add a product by itself in a list in react? or do you have to do that manually without a backend like Django/Python?
You are comparing tools from two different categories. React is the frontend while Django is the backend so you can't really compare it like that.