React Django Crud Tutorial - Learn React Python Django In 1 Hour | For Beginners

  Рет қаралды 17,796

PedroTech

PedroTech

Күн бұрын

Пікірлер: 84
@arhabersham
@arhabersham 3 ай бұрын
🙌🏽 Pedro Pedro Pedro, Pe-dro PE 🎵
@xzex2609
@xzex2609 3 ай бұрын
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)));
@ttaylor9916
@ttaylor9916 17 күн бұрын
thanks for the heads up
@okellocrystal6538
@okellocrystal6538 2 ай бұрын
This was perfect, very intricate but also easily palatable and flowing. You should def make more of this. Thank you so much.
@arhabersham
@arhabersham 3 ай бұрын
The tutorial I been waiting for, from the content creator I been growing with ❤
@PedroTechnologies
@PedroTechnologies 3 ай бұрын
Hope you enjoyed it!
@dev-akeel
@dev-akeel 3 ай бұрын
​@@PedroTechnologies For sure.
@Misica11000
@Misica11000 2 ай бұрын
To much unexplained things with django and bekend,you learn nothing from this video
@madhurabs4741
@madhurabs4741 2 ай бұрын
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
@ebubeoguejiofor5094
@ebubeoguejiofor5094 3 ай бұрын
He made the video...yay!
@Misica11000
@Misica11000 2 ай бұрын
And what you learned from this video yayy?...Nothing,yayyy
@ebubeoguejiofor5094
@ebubeoguejiofor5094 2 ай бұрын
@@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.
@bahdcoder
@bahdcoder 3 ай бұрын
as i saw this video and i started praying for you.. thank you pedro
@Misica11000
@Misica11000 2 ай бұрын
Not beginners friendly
@abdrahim9307
@abdrahim9307 3 ай бұрын
we need more tutorials like this 🎉❤
@l.r4121
@l.r4121 2 ай бұрын
Dude, amazing tutorial. Helps me a lot! Thanks!
@xzex2609
@xzex2609 3 ай бұрын
this was great . simple . right to the point. good stuff
@roginit8861
@roginit8861 10 күн бұрын
This video is very helpful for me. Thank you
@Deus-lo-Vuilt
@Deus-lo-Vuilt 3 ай бұрын
Thank you, I was just looking for a video like this
@Mr.ilyassLofi
@Mr.ilyassLofi 2 ай бұрын
Thank you for this work, I learned a lot from you. 🐾🌀
@hk254lyt8
@hk254lyt8 3 ай бұрын
I needed this. You are God sent 🙏🏾
@MouSes222
@MouSes222 15 күн бұрын
So helpful, thx man !
@genesy479
@genesy479 3 ай бұрын
Thanks so much, knew this was coming
@sick73
@sick73 2 ай бұрын
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!!
@anjaneyulub2529
@anjaneyulub2529 3 ай бұрын
Awesome content Pedro❤
@hrithik3204
@hrithik3204 Ай бұрын
continue the videos like this and cover all the topics of django and react we are waiting
@xzex2609
@xzex2609 3 ай бұрын
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)
@joaoarthurbandeira
@joaoarthurbandeira Ай бұрын
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!
@Sreekanth-s
@Sreekanth-s 2 ай бұрын
This was awesome! Thank you so much!
@davidmukoro1166
@davidmukoro1166 2 ай бұрын
Nice one. let's try to deploy this to shared Linux server and also with Mysql .
@derek7710
@derek7710 2 ай бұрын
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
@roseklaynk3087
@roseklaynk3087 3 ай бұрын
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
@AAA-f1m
@AAA-f1m 2 ай бұрын
YES!!!! Are we going to get an intermediate video?
@mikeross934
@mikeross934 3 ай бұрын
pls do some videos on jwt authentication with Django rest framework!
@abidusage9765
@abidusage9765 Ай бұрын
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
@emericriviere220
@emericriviere220 27 күн бұрын
very useful tutorial !
@SK_Covers
@SK_Covers 3 ай бұрын
Need full stack project react/next and django for backend 👀✅🔥
@edouardhalimi3514
@edouardhalimi3514 Ай бұрын
Very usefull, thank you !
@miladnicolas8858
@miladnicolas8858 Ай бұрын
great video it help me a lot thks 👌👌
@tomilolatemiloluwa5620
@tomilolatemiloluwa5620 3 ай бұрын
Good stuff as always Pedro would be cool if you could do a video on supabase and react
@narayanreddy5531
@narayanreddy5531 2 ай бұрын
Thank you! Nice content
@FarhanAlly
@FarhanAlly 3 ай бұрын
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
@mugerwaobadiah1621
@mugerwaobadiah1621 3 ай бұрын
Nice, waiting for laravel react
@UrbanParkSuitesChef
@UrbanParkSuitesChef 3 ай бұрын
King Pedro 🎉
@godofwar8262
@godofwar8262 3 ай бұрын
Hey will you make a backend series with javascript
@xzex2609
@xzex2609 3 ай бұрын
Dave grays Node course or MERN stack is great , both use node and express js. and he is the best teacher
@oliver.quiroz
@oliver.quiroz 2 ай бұрын
How did you install your django and djangoframework in your mac?
@pedrovic12
@pedrovic12 3 ай бұрын
Muito obrigado meu chara!!!!
@praveertiwari3545
@praveertiwari3545 3 ай бұрын
thanks a lot dude
@aashayamballi
@aashayamballi 3 ай бұрын
Thank you!
@KkKk-k1s1y
@KkKk-k1s1y Ай бұрын
can you post more React Django Tutorial or project, since i have a final year project coming pls!!!
@manavshah1844
@manavshah1844 3 ай бұрын
Great🎉
@user-Amankhowal
@user-Amankhowal 3 ай бұрын
How do you manage to enable Server Side Rendering?
@mdanishossain026
@mdanishossain026 Ай бұрын
what is the theme of your VS code???
@CalderonEimannJoshuaL.
@CalderonEimannJoshuaL. 3 ай бұрын
Can you make a video for chat app system using django? Im stuck in implementing the chat app😢
@thinzin101
@thinzin101 2 ай бұрын
it was too perfect
@rangabharath4253
@rangabharath4253 3 ай бұрын
Awesome
@asn3348
@asn3348 2 ай бұрын
more django videos please
@janice5083
@janice5083 3 ай бұрын
help so in order to connect django and react i just need to use the corsheaders stuff and the rest framework?
@tomahocbc963
@tomahocbc963 3 ай бұрын
please can you add authenticaion, login, logout etc..
@subratkarmacharya8125
@subratkarmacharya8125 Ай бұрын
more django react contents
@bereketg5609
@bereketg5609 Ай бұрын
53:16 I feel you😭
@bahdcoder
@bahdcoder 3 ай бұрын
please make more django projects
@xzex2609
@xzex2609 3 ай бұрын
more django stuff
@codewithrahull9636
@codewithrahull9636 3 ай бұрын
Second view 😍first like😇 and first report💀(for nudity)
@smamba95
@smamba95 3 ай бұрын
cool
@dev-akeel
@dev-akeel 3 ай бұрын
🤔 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 {" "}.
@charliemiddleton9918
@charliemiddleton9918 3 ай бұрын
WE NEED MORE is vite really necessary?
@LuisMorales-lu2cm
@LuisMorales-lu2cm 3 ай бұрын
Not necessary but way faster and more recommended to use vite, I think even in the recent react document it recommends to use vite
@neekdumbwavy
@neekdumbwavy 3 ай бұрын
You forgot timestamps and you should create actual video sections too
@adamlahchimi-zb9rc
@adamlahchimi-zb9rc 3 ай бұрын
the linkdin link doesnt work
@nileshkanjariya3950
@nileshkanjariya3950 3 ай бұрын
Django advance course
@janice5083
@janice5083 3 ай бұрын
35:50
@techug2719
@techug2719 Ай бұрын
6
@techug2719
@techug2719 Ай бұрын
3
@techug2719
@techug2719 Ай бұрын
10
@techug2719
@techug2719 Ай бұрын
2
@techug2719
@techug2719 Ай бұрын
5
@techug2719
@techug2719 Ай бұрын
4
@techug2719
@techug2719 Ай бұрын
1
@techug2719
@techug2719 Ай бұрын
8
@techug2719
@techug2719 Ай бұрын
7
@techug2719
@techug2719 Ай бұрын
9
Python Django REST API In 30 Minutes - Django Tutorial
30:42
PedroTech
Рет қаралды 36 М.
Learn Django in 20 Minutes!!
21:25
Tech With Tim
Рет қаралды 416 М.
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 6 МЛН
Hoodie gets wicked makeover! 😲
00:47
Justin Flom
Рет қаралды 135 МЛН
Python Django Web Framework - Full Course for Beginners
3:45:41
freeCodeCamp.org
Рет қаралды 4,6 МЛН
15 POWERFUL Python Libraries You Should Be Using
22:31
ArjanCodes
Рет қаралды 58 М.
OpenAI Assistants API - Course for Beginners
3:32:55
freeCodeCamp.org
Рет қаралды 535 М.
Building a Full Stack Workout Tracker with React Native & MongoDB
3:59:11
Django Tutorial for Beginners - Build Powerful Backends
1:02:36
Programming with Mosh
Рет қаралды 2,7 МЛН
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 6 МЛН