在Django中,可以通过以下步骤从model表单上的选择中获取外键ID:
Book
的model,其中包含一个外键字段author
,指向Author
模型:from django.db import models
class Author(models.Model):
name = models.CharField(max_length=100)
class Book(models.Model):
title = models.CharField(max_length=100)
author = models.ForeignKey(Author, on_delete=models.CASCADE)
request.POST
获取用户选择的外键ID。假设你的表单中有一个名为author
的选择字段:from django.shortcuts import render
from .models import Book
def create_book(request):
if request.method == 'POST':
title = request.POST['title']
author_id = request.POST['author'] # 获取用户选择的外键ID
book = Book(title=title, author_id=author_id)
book.save()
# 其他处理逻辑...
else:
# 渲染表单页面...
return render(request, 'create_book.html')
在上述代码中,request.POST['author']
将返回用户选择的外键ID。
value_from_instance
过滤器。假设你的模型实例为book
,你可以通过以下方式获取外键ID:<select name="author">
{% for author in authors %}
<option value="{{ author.id }}" {% if book.author_id == author.id %}selected{% endif %}>{{ author.name }}</option>
{% endfor %}
</select>
在上述代码中,author.id
将返回外键ID,并使用selected
属性将选中用户之前选择的选项。
总结起来,要从model表单上的选择中获取外键ID,你需要在model中定义外键字段,然后在视图函数中通过request.POST
获取用户选择的外键ID,或者在模板中使用value_from_instance
过滤器获取外键ID。
领取专属 10元无门槛券
手把手带您无忧上云