我想在我的项目中实现从属下拉列表。 这是模型:
class ObjectName(models.Model):
objectName=models.CharField(max_length=100)
objFullForm=models.CharField(max_length=100, default='')
def __str__(self):
return self.objectName
class ActionObject(models.Model):
objectName=models.ForeignKey(ObjectName,on_delete=models.CASCADE)
action=models.CharField(max_length=100)
def __str__(self):
return self.action
当用户在 ActionObject 模板中选择一个对象时,该Action应自动列出相关字段。 我尝试使用Django-smartselects,但没有用。
答案 0 :(得分:1)
尝试遵循本教程,该教程逐步解释了实现依赖下拉列表所需的一切:
How to Implement Dependent/Chained Dropdown List with Django