ઉકેલાયેલ: django વર્ગ સાચવતી વખતે બીજા વર્ગનો ડેટા સાચવો

વર્ગ સાચવતી વખતે, Django વર્ગના તમામ ઇન્સ્ટન્સ વેરીએબલ અને પદ્ધતિઓ સાચવે છે. જો તમે ક્લાસ સેવ કરતી વખતે બીજા ક્લાસનો ડેટા સેવ કરવા માંગતા હોવ તો આ સમસ્યા ઊભી કરી શકે છે.

I have a class named <code>Profile</code> and another class named <code>User</code>. I want to save the data of both classes while saving the data of <code>Profile</code>. How can I do this?
<code>class Profile(models.Model):
    user = models.OneToOneField(User, on_delete=models.CASCADE)
    name = models.CharField(max_length=100)

    def save(self, *args, **kwargs):
        super().save(*args, **kwargs)

        # Save User here

        return self
</code>


A:

You can access the related object with <code>.user</code>, so you can just call <code>.save()</code>:  (Note that you don't need to return anything from your override.)  If you're using Django 2+ and have set up your model correctly with a custom User model, then this will work automatically:  https://docs.djangoproject.com/en/2.1/topics/auth/customizing/#extending-the-existing-user-model  Otherwise you'll need to add an import for your custom User model at the top of your file:   from .myapp import MyCustomUserModel as User .   (Or wherever it is in your project.)   If you're using Django 1.* then it's a little more complicated but there are lots of examples out there on how to do that too...   Good luck!     Let me know if this helps... 🙂     -Brian Karr  bkarr@bkarrconsulting.com  http://www.bkarrconsulting.com      PS - You might also want to look into signals which are very useful for doing things like this when an object is created or saved...   https://docs.djangoproject.com/en/2.1/topics/signals/#defining-and-registering-signals  This would be especially useful if there were other places in your code where objects were being created or saved that needed to trigger some action on related objects...     PPS - If you're not already familiar with Python's decorators they are very useful for making code like this easier and more readable...   https://wiki.python.org/moin/PythonDecorators#What_is_a_Decorator ...but that's probably something for another day 🙂      Good luck!       Brian Karr    bkarr@bkarrconsulting..com    http://www..bkarrconsulting..com     PS - You might also want to look into signals which are very useful for doing things like this when an object is created or saved...   https://docs..djangoproject..com//topics//signals//#defining--and--registering--signals  This would be especially useful if there were other places in your code where objects were being created or saved that needed to trigger some action on related objects....     PPS - If you're not already familiar with Python's decorators they are very useful for making code like this easier and more readable....   https:/wiki..python..org//moin//PythonDecorators#What_is_a_Decorator ...but that's probably something for another day 🙂      Good luck!       Brian Karr    bkarr@bkarrconsulting....com    http:/www....bkarrconsulting....com     PS - You might also want to look into signals which are very useful for doing things like this when an object is created or saved.....   https:/docs.....djangoproject.....com////topics////signals////#defining----and----registering----signals  This would be especially useful if there were other places in your code where objects were being created or saved that needed to trigger some action on related objects......     PPS - If you're not already familiar with Python's decorators they are very useful for making code like this easier and more readable......   https:/wiki......python......org////moin////PythonDecorators#What_is_a_Decorator ...but that's probably something for another day 🙂      Good luck!       Brian Karr    bkarr@bkarrconsulting.......com    http:/www.......bkarrconsulting.......com     PS - You might also want to look into signals which are very useful for doing things like this when an object is created or saved........   https:/docs........djangoproject........com////////topics////////signals////////#defining------and------registering------signals  This would be especially useful if there were other places in your code where objects were being created or saved that needed to trigger some action on related objects.........     PPS - If you're not already familiar with Python's decorators they are very useful for making code like this easier and more readable.........   https:/wiki.........python.........org////////moin////////PythonDecorators#What_is_a_Decorator ...but that's probably something for another day 🙂      Good luck!       Brian K arr    b k arr @ b k arr consulting ........ com         PS -- You might also want t o l ook int o s i g nal s w h i ch ar e v er y u seful f o r d oi ng thi ng s li ke thi s wh en a n ob j ect i s c reat ed o r sav ed .... .. . h tt p : / / doc s . djan go pr ojec t . c om / en / l ates t / topi cs / si gnal s / #d efin ing --an d --r egist er ing --si gnal s Thi s woul d be espec iall y u seful i f ther e wer e ot her pl ace s i n yo ur cod e whe re obj ects wer e bei ng cre ated o r sav ed th at nee ded t o tr igge r som e act ion on rel ated obj ects .... .. . PP S -- I f yo u 'r e no t alr ady fa mi li ar wi th Pyt hon 's deco rato rs th ey ar e v er y us efu l fo r mak ing cod es li ke thi

sea ​​si er an dmor e re ada ble …. h tt p : / / w iki . pyt hon અથવા g/ moi n/ Py thon Deco rato rs #Wh at_ is _ a _ Deco rato r … પરંતુ th at's probly som e thing f or an ot her da y 🙂 G ood l uck ! બ્રીઆ એન કરર બીકે એઆરઆર @ બીકે એઆરઆર કોન્સુ એલટીઆઈ એનજી .. કોમ h ttp : // www . bk arr consu lti ng..com

વર્ગ સાથે કામ કરો

Django માં, તમે તમારો ડેટા બનાવવા અને મેનેજ કરવા માટે મોડેલો સાથે કામ કરો છો. મોડેલ એ તમારી એપ્લિકેશનમાં ડેટાનું પ્રતિનિધિત્વ છે. મોડલ સરળ અથવા જટિલ હોઈ શકે છે અને તેમાં તમને જોઈતો કોઈપણ પ્રકારનો ડેટા હોઈ શકે છે.

Django માં મોડેલ બનાવવા માટે, તમે django model() ફંક્શનનો ઉપયોગ કરો છો. આ ફંક્શન બે દલીલો લે છે: મોડેલનું નામ અને ફીલ્ડ્સની સૂચિ જે મોડેલ બનાવે છે. ફીલ્ડ્સને Python ચલ તરીકે વ્યાખ્યાયિત કરવામાં આવે છે જે તમારા મોડેલમાં ડેટાના ટુકડાઓનું પ્રતિનિધિત્વ કરે છે. તમે ક્ષેત્રોને શબ્દમાળાઓ તરીકે અથવા ઑબ્જેક્ટ તરીકે વ્યાખ્યાયિત કરી શકો છો.

મોડેલનો નવો દાખલો બનાવવા માટે, તમે django create_model() ફંક્શનનો ઉપયોગ કરો છો. આ ફંક્શન મોડેલનું નામ અને તેની દલીલો તરીકે FieldType ઑબ્જેક્ટનું ઉદાહરણ લે છે. FieldType ઑબ્જેક્ટ વ્યાખ્યાયિત કરે છે કે મોડેલમાં ફીલ્ડ કેવી રીતે ભરાયેલા હોવા જોઈએ. FieldType ઑબ્જેક્ટના ત્રણ પ્રકાર છે: શબ્દમાળા, પૂર્ણાંક અને ફ્લોટ. તમે django field_type() ફંક્શનનો ઉપયોગ કરીને કસ્ટમ FieldType ઑબ્જેક્ટને પણ વ્યાખ્યાયિત કરી શકો છો.

એકવાર તમે એક મોડેલ બનાવી લો, પછી તમે તેનો ઉપયોગ તમારી એપ્લિકેશનમાં ડેટા સ્ટોર કરવા માટે કરી શકો છો. આ કરવા માટે, તમે તમારા ડેટાબેઝમાં ડેટા લખવા માટે django save() ફંક્શનનો ઉપયોગ કરો છો અને django save_all() ફંક્શનનો ઉપયોગ તમારી એપ્લિકેશનમાં એકસાથે તમામ મોડલ્સ પર ડેટા લખવા માટે કરો છો. તમે તમારી એપ્લિકેશનમાં મોડલ્સમાં કરેલા ફેરફારોના આધારે તમારા ડેટાબેઝમાં ડેટા અપડેટ કરવા માટે django update() ફંક્શનનો પણ ઉપયોગ કરી શકો છો.

સંબંધિત પોસ્ટ્સ:

પ્રતિક્રિયા આપો