您好,登錄后才能下訂單哦!
本篇文章為大家展示了如何在django中實現(xiàn)foreignkey,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
foreignkey是一種關(guān)聯(lián)字段,將兩張表進(jìn)行關(guān)聯(lián)的方式,我們在dodels.py里寫入要生成的兩張表:
class Usergroup(models.Model): uid=models.AutoField(primary_key=True) caption=models.CharField(max_length=64,null=True) ctime=models.DateField(auto_now_add=True,null=True) uptime=models.DateField(auto_now=True,null=True) class Userinfo(models.Model): username=models.CharField(max_length=32,blank=True) password=models.FileField(max_length=60,help_text='pwd') email=models.CharField(max_length=60) test=models.EmailField(max_length=20,null=True,error_messages={'invalid':'shurumima'}) user_group=models.ForeignKey('Usergroup',to_field='uid',default=1) #這里與上面的Usergroup表的uid進(jìn)行關(guān)聯(lián),默認(rèn)取到uid=1的行) user_type_choices=( (1,'superuser'), (2,'commonuser'), (3,'com-commonuser'), ) user_type_id=models.IntegerField(choices=user_type_choices,default=1)
運(yùn)行下面兩條命令:
C:\Users\Liujiangbu.GLOBALE.001\PycharmProjects\untitled3>python manage.py makemigrations
C:\Users\Liujiangbu.GLOBALE.001\PycharmProjects\untitled3>python manage.py migrate
編輯app項目的views.py加入下面兩段:
def user_info(request): if request.method == "GET": #userlist = test.objects.all() userlist2=models.Userinfo.objects.all() #獲取Userinfo表的所有信息 # return render(request,'userinfo.html',{'userlist':userlist}) return render(request, 'userinfo.html', {'userlist2': userlist2}) #模板引用 elif request.method == "POST": u = request.POST.get('user') pp= request.POST.get('pwd') #test.objects.create(username=u,depno=pp) models.Userinfo.objects.create(username=u,password=pp,user_group_id=1) return HttpResponse("<p>注冊成功</p>")
模板中創(chuàng)建userinfo.html,并加入下面內(nèi)容:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>666666(runoob.com)</title> </head> <body > <div> <div > <a class="menu" href="/home-bak" rel="external nofollow" >是爺們兒就點(diǎn)下 </a> <br /> <a class="menu" href="/group" rel="external nofollow" >是爺們兒就洅點(diǎn)下 </a> </div> <div > <h4>添加主機(jī)</h4> <form method="POST" action="/userinfo"> <input type="hidden" name="csrfmiddlewaretoken" value="{{ csrf_token }}"> <input type="text" name="user"> <input type="text" name="pwd"> <input type="submit" name="添加"> </form> <h4>主機(jī)列表</h4> <ul> {% for i in userlist2 %} <li><a href="/datail" rel="external nofollow" >{{ i.username }}</a> <span>{{ i.user_group.caption }}</span> </li> {% endfor %} </ul> </div> </div> </body> </html>
然后添加url:
執(zhí)行項目:
在空白處寫入內(nèi)容,會自動添加到數(shù)據(jù)庫中:
上述內(nèi)容就是如何在django中實現(xiàn)foreignkey,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。