this was very helpful but actually there are a lots of problems that needed to be taken care of , Like the input fields must have been two way bounded so you can control the field after creating the book (clean them). the back end needed to check if the book is already exist and don't let you add more. the front end needed to check if the response is ok then add the contents so the empty book does not added when the database reject that the book is already exists. the backend needed to check if the both of the fields are provided then add them to the database I add some of the solutions if not title and not release_year: return Response({'detail': 'the title and the year is not provided'}, status=status.HTTP_400_BAD_REQUEST) if Book.objects.filter(title=title, release_year=release_year): return Response({'detail': 'Book already exist'}, status=status.HTTP_400_BAD_REQUEST) add value field in the input for twoway bounding and settitle('') setReleaseYear('') in every functions the it needs and check the response if (response.ok) { const data = await response.json(); setBooks(b => [...b, data]); // Reset the input fields after adding the book setTitle(''); setReleaseYear(''); } else { const errorData = await response.json(); console.log("Error:", errorData); alert("This book already exists in the database."); } and lastly use turnary opetator instead of if else setBooks(b => b.map(book => (book.id === id ? data : book)));
@@Misica11000 you seem to be having a blast, trolling people on the Internet to make up for your own lack of skill and intelligence 🙂. Good luck with that.
Thank you so much !!!!!!!!!! I really mean it!!!! I completed the complete Tutorial. I learned a lot from this.. I used axios in my project.This is very helpful in the long run
Pedro, thanks for all the content. i have a request: if you could help us by making a vid on how you would implement a register, login and logout to this same CRUD app. thanks in advanced!!
Hey Pedro, it would be AWESOME if you could do a video with Django Rest (backend) + Nextjs (frontend) with maybe using tools like redux toolkit, rtk query, JWT authentication and how they interact with one another. Cheers!
labeled "for beginners" I really wish there was more guidance on set up, atleast direction to useful articles, as python especially for mac users runs into a lot of issues
I'd like to know who we can use a relation one to many in this same tutorial. Eg: we can have class Language, also class Framework. Now the framework can exist if language exists. Help us to understand all the concepts about it
I am so grateful Thanks so much for the video i did run into some errors with React and i saw the if statement and replaced it with this turnary instead const data = await response.json() setRecipes((prev) => prev.map((recipe) => recipe.id === pk ? data : recipe )) and you can add the catch (err) etc here
I add some functionality to the create end point not to let add books when it is available in the data base and when the title is null I will copy the code for others. @api_view(['POST']) def create_book(request): data = request.data
title = data.get('title') release_year = data.get('release_year')
if not title and not release_year: return Response({'detail': 'the title and the year is not provided'}, status=status.HTTP_400_BAD_REQUEST) if Book.objects.filter(title=title, release_year=release_year): return Response({'detail': 'Book already exist'}, status=status.HTTP_400_BAD_REQUEST)
serializer = BookSerializer(data=data) if serializer.is_valid(): serializer.save() return Response(serializer.data, status=status.HTTP_201_CREATED)
hey pedro i was just requesting if you can clarify for the following things.. i am just a react guy and recently i have seen your firebase tutorial and i was following over them my question is can i totally use firebase as my solid backend because i have no knowledge about backend language... the other thing is can i partially usee firebase only when it comes to authenticatication part and use RTK querry of which i know it better fro thee CRUD operation . thanks
🤔 I have been watching you for more than a couple of years, why do you put those unnecessary spaces in the jsx? and when prettier tries to format your code you just remove that formatted {" "}.
this was very helpful but actually there are a lots of problems that needed to be taken care of , Like
the input fields must have been two way bounded so you can control the field after creating the book (clean them).
the back end needed to check if the book is already exist and don't let you add more.
the front end needed to check if the response is ok then add the contents so the empty book does not added when the database reject that the book is already exists.
the backend needed to check if the both of the fields are provided then add them to the database
I add some of the solutions
if not title and not release_year:
return Response({'detail': 'the title and the year is not provided'}, status=status.HTTP_400_BAD_REQUEST)
if Book.objects.filter(title=title, release_year=release_year):
return Response({'detail': 'Book already exist'}, status=status.HTTP_400_BAD_REQUEST)
add value field in the input for twoway bounding and settitle('') setReleaseYear('') in every functions the it needs
and check the response
if (response.ok) {
const data = await response.json();
setBooks(b => [...b, data]);
// Reset the input fields after adding the book
setTitle('');
setReleaseYear('');
} else {
const errorData = await response.json();
console.log("Error:", errorData);
alert("This book already exists in the database.");
}
and lastly use turnary opetator instead of if else
setBooks(b => b.map(book => (book.id === id ? data : book)));
thanks for the heads up
This was perfect, very intricate but also easily palatable and flowing. You should def make more of this. Thank you so much.
🙌🏽 Pedro Pedro Pedro, Pe-dro PE 🎵
as i saw this video and i started praying for you.. thank you pedro
Not beginners friendly
The tutorial I been waiting for, from the content creator I been growing with ❤
Hope you enjoyed it!
@@PedroTechnologies For sure.
To much unexplained things with django and bekend,you learn nothing from this video
we need more tutorials like this 🎉❤
He made the video...yay!
And what you learned from this video yayy?...Nothing,yayyy
@@Misica11000 you seem to be having a blast, trolling people on the Internet to make up for your own lack of skill and intelligence 🙂. Good luck with that.
Thank you so much !!!!!!!!!! I really mean it!!!! I completed the complete Tutorial. I learned a lot from this.. I used axios in my project.This is very helpful in the long run
This video is very helpful for me. Thank you
YES!!!!
Are we going to get an intermediate video?
Pedro, thanks for all the content. i have a request: if you could help us by making a vid on how you would implement a register, login and logout to this same CRUD app. thanks in advanced!!
Hey Pedro, it would be AWESOME if you could do a video with Django Rest (backend) + Nextjs (frontend) with maybe using tools like redux toolkit, rtk query, JWT authentication and how they interact with one another. Cheers!
this was great . simple . right to the point. good stuff
Dude, amazing tutorial. Helps me a lot! Thanks!
continue the videos like this and cover all the topics of django and react we are waiting
labeled "for beginners" I really wish there was more guidance on set up, atleast direction to useful articles, as python especially for mac users runs into a lot of issues
Need full stack project react/next and django for backend 👀✅🔥
Nice one. let's try to deploy this to shared Linux server and also with Mysql .
So helpful, thx man !
Thank you for this work, I learned a lot from you. 🐾🌀
I'd like to know who we can use a relation one to many in this same tutorial. Eg: we can have class Language, also class Framework. Now the framework can exist if language exists. Help us to understand all the concepts about it
I needed this. You are God sent 🙏🏾
great video it help me a lot thks 👌👌
Thanks so much, knew this was coming
Awesome content Pedro❤
This was awesome! Thank you so much!
I am so grateful Thanks so much for the video i did run into some errors with React and i saw the if statement and replaced it with this turnary instead
const data = await response.json()
setRecipes((prev) => prev.map((recipe) => recipe.id === pk ? data : recipe
)) and you can add the catch (err) etc here
very useful tutorial !
Very usefull, thank you !
Thank you, I was just looking for a video like this
I add some functionality to the create end point not to let add books when it is available in the data base and when the title is null I will copy the code for others.
@api_view(['POST'])
def create_book(request):
data = request.data
title = data.get('title')
release_year = data.get('release_year')
if not title and not release_year:
return Response({'detail': 'the title and the year is not provided'}, status=status.HTTP_400_BAD_REQUEST)
if Book.objects.filter(title=title, release_year=release_year):
return Response({'detail': 'Book already exist'}, status=status.HTTP_400_BAD_REQUEST)
serializer = BookSerializer(data=data)
if serializer.is_valid():
serializer.save()
return Response(serializer.data, status=status.HTTP_201_CREATED)
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
pls do some videos on jwt authentication with Django rest framework!
Good stuff as always Pedro would be cool if you could do a video on supabase and react
Nice, waiting for laravel react
Thank you! Nice content
Hey will you make a backend series with javascript
Dave grays Node course or MERN stack is great , both use node and express js. and he is the best teacher
can you post more React Django Tutorial or project, since i have a final year project coming pls!!!
thanks a lot dude
hey pedro i was just requesting if you can clarify for the following things.. i am just a react guy and recently i have seen your firebase tutorial and i was following over them my question is can i totally use firebase as my solid backend because i have no knowledge about backend language... the other thing is can i partially usee firebase only when it comes to authenticatication part and use RTK querry of which i know it better fro thee CRUD operation . thanks
How did you install your django and djangoframework in your mac?
more django videos please
Thank you!
more django react contents
Muito obrigado meu chara!!!!
53:16 I feel you😭
what is the theme of your VS code???
How do you manage to enable Server Side Rendering?
it was too perfect
Great🎉
King Pedro 🎉
Can you make a video for chat app system using django? Im stuck in implementing the chat app😢
help so in order to connect django and react i just need to use the corsheaders stuff and the rest framework?
please make more django projects
more django stuff
Awesome
please can you add authenticaion, login, logout etc..
WE NEED MORE
is vite really necessary?
Not necessary but way faster and more recommended to use vite, I think even in the recent react document it recommends to use vite
You forgot timestamps and you should create actual video sections too
🤔 I have been watching you for more than a couple of years, why do you put those unnecessary spaces in the jsx? and when prettier tries to format your code you just remove that formatted {" "}.
Django advance course
the linkdin link doesnt work
cool
35:50
Second view 😍first like😇 and first report💀(for nudity)
6
10
3
5
4
2
8
7
9
1