gpt4 book ai didi

django - 相关查找字段外键在内联 Django 中不起作用

转载 作者:行者123 更新时间:2023-12-02 05:40:38 25 4
gpt4 key购买 nike

我的 tabularinline 字段有问题。我有这样的模型

class Product(models.Model):
....

class Pemesanan(models.Model):
produks = models.ManyToManyField(Product, verbose_name=u"Kode Produk", through='Foo')

class Foo(models.Model):
product = models.ForeignKey(Product)
...

Foo 类是具有类 Pemesanan 和类产品的中间类(manytomany 字段)。它有一个指向 Class Pemesanan 的外键字段。 Foo 类在 change_form 模板中显示为 tabularinline,如下所示 http://upload.ui.ac.id/?a=d&i=845380

但我的问题是 field product 没有显示为相关查找字段,因为它显示为普通表单(不是内联)。这是我的管理员

class FooInline(admin.TabularInline):
model = Foo
extra = 0
allow_add = True

class PemesananAdmin(admin.ModelAdmin):
....
search_fields = ['produks']
raw_id_fields = ('produks',)
related_lookup_fields = {
'm2m': ['produks'],
}
inlines = [
FooInline,
]
exclude = ('produks',)

我已经使用了自动完成功能,但是这里似乎很难实现,因为教程不完整。那么有没有办法让我在 tabularinline 中进行相关查找?非常感谢:D。

最佳答案

所以,是的,我想我只是误解了你的问题。您只是希望相关的查找弹出窗口在每个内联中选择一个产品,而不是一个选择框。您已经了解 raw_id_fields;问题是您需要在内联模型管理中指定它,而不是主要的父模型管理。

class FooInline(admin.TabularInline):
model = Foo
extra = 0
allow_add = True
raw_id_fields = ('product',)

关于django - 相关查找字段外键在内联 Django 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11018022/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com