Django Signals | Pre and Post Delete

Django Signals | Pre and Post Delete

Very Academy

2 года назад

7,142 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@slimecraft3
@slimecraft3 - 20.04.2023 02:31

The best brief explanation! Great video

Ответить
@prasanthgandhudi3617
@prasanthgandhudi3617 - 16.01.2023 14:07

Love you sir nice videos I am understanding all videos of you

Ответить
@caglargulucan
@caglargulucan - 21.11.2022 17:50

How can we understand the user who started this process? example: is_superuser or not ?

Ответить
@n.i.g.e.l
@n.i.g.e.l - 02.06.2022 22:22

Hey! I'm facing an issue and am hoping you might know the solution.
I need to create a double nested inline form, but have no idea how to go about this (Outside of django admin, so I cannot use the nested_inlines module). Any help? :)

Ответить
@ibrahimoglu
@ibrahimoglu - 24.05.2022 09:23

👍

Ответить
@BrantScalan
@BrantScalan - 23.05.2022 20:46

Great video. I have been exploring signals and this is very helpful. I was wondering if you might be able to extend this or show and example of deleting a profile picture from the file system when someone updates their picture to a new one. The url path to the image is stored in the db but the file is in the upload directory. That gets really full as new profiles are uploaded or changed. A working example would be amazing

Ответить
@TechWithSabri
@TechWithSabri - 23.05.2022 17:00

Thanks Very;

would you please provide a video that make real world changes.
For example:
If we have a real time data website changes every one minute, the data should change in our Django app.

Thank you in advance.

Ответить
@fedepia84
@fedepia84 - 23.05.2022 16:57

Great video as usual. One of the problems related to signals is that it messes up working with bulk operations, imagine running a pre save signal on a 1000 records update. We would switch from 1 single bulk save to 1000 individual saves.

Ответить