models.py
class Author(models.Model):
author_id=models.AutoField(primary_key=True)
first_name = models.CharField(max_length=30)
last_name = models.CharField(max_length=40)
email = models.EmailField()
age=models.IntegerField()
class Meta:
db_table=u'Author Info'
def __unicode__(self):
return u"%d %s %s %s %d" % (self.pk, self.first_name, self.last_name, self.email,self.age)
def books(self):
return Book.objects.filter(author=self)
class Book(models.Model):
book_id=models.AutoField(primary_key=True,unique=True)
book_name=models.CharField(max_length=30)
publisher_name=models.CharField(max_length=40)
author=models.ForeignKey(Author)
class Meta:
db_table = u'Book Name'
def __unicode__(self):
return u'%d %s %s' % (self.pk, self.book_name, self.publisher_name)
views.py
def addbook(request):
if request.POST:
first_name = request.POST.get('first_name')
last_name = request.POST.get('last_name')
email = request.POST.get('email')
age = request.POST.get('age')
author = Author(first_name = first_name,last_name = last_name,email=email,age=age)
author=author.save()
book_name = request.POST.get('book_name')
publisher_name = request.POST.get('publisher_name')
#Book.author_id=author
#author_id = author_id()
book=Book.objects.create(book_name=book_name,publisher_name=publisher_name,author_id)
book.save()
return redirect('/index/')
else:
return render_to_response('addbook.html',context_instance=RequestContext(request))
的index.html /模板
table border="0" cellpadding='8' cellspacing='10'>
<tr>
<td align="right" colspan="8"><a href="/addbook/">Add Book</a></td>
</tr>
<tr>
<th>Book Id</>
<th>Book name</th>
<th>Publication name</th>
<th>Author Id</th>
<th>First Name</th>
<th>Last Name</th>
<th>E Mail</th>
<th>Age</th>
</tr>
{% for book in books %}
<tr>
<td>{{ book.book_id }}</td>
<td>{{ book.book_name }}</td>
<td>{{ book.publisher_name }}</td>
<td>{{ book.author_id }}</td>
{% for author in authors %}
<td>{{author.first_name}} </td><td>{{author.last_name}}</td>
<td>{{author.email}}</td>
<td>{{author.age}}</td>
{% endfor %}
<td><a href="/editbook/{{ book.book_id}}">Edit</a></td>
<td><a href="/deletebook/{{ book.book_id}}">Delete</a></td>
{% endfor %}
这里如何在Book类中为“author”或author_id字段分配外键值,请给出赋值程序。我无法为forreign键字段设置值...如何分配或者是否有任何其他可用功能请解释我
答案 0 :(得分:1)
完整性错误是由于null值传递给Book表的author_id列。检查此行book=Book.objects.create(book_name=book_name,publisher_name=publisher_name,author_id)
如果你想在book表中插入相同的作者id,你可以使用
Django的信号
或者您必须通过查询一些独特的参数(比如电子邮件ID值)从Author表中获取最新的作者ID,并将此ID传递给Books表
答案 1 :(得分:1)
问题在于:
author = Author(first_name = first_name,last_name = last_name,email=email,age=age)
author=author.save()
save()
实际上并没有返回任何东西,即使我相信它应该。将其更改为:
author = Author(first_name = first_name,last_name = last_name,email=email,age=age)
author.save()
book.author = author
book.save()
现在你有了你的作者,你可以分配给book.author
。
此外,当我在这里时,你应该了解reverse relations。不需要以下方法:
def books(self):
return Book.objects.filter(author=self)
因为你可以这样做:
author.book_set.all()