我想制作一个系统,这是属于项目的照片。我还启用了我可以直接为项目上传zip文件,它将解压缩并将照片注册到指定的项目。但是,在定义Photo
类时我遇到了麻烦。
我需要使用当前实例获取Project.file_zip.path
的值,以定义img
字段的upload_to
属性。但是,当我尝试下面的操作时,它会返回AttributeError: 'ForeignKey' object has no attribute 'file_path'
。我该如何解决这个问题?
class Project(models.Model):
....
owner=models.ForeignKey(User)
file_zip=models.FileField(upload_to='projects/%Y/%m/%d')
def __unicode__(self):
return self.project_name
def file_path(self):
return re.search(re.search('[^\s]+(?=\.zip)', self.file_zip).group(0))
class Photo(models.Model):
belongs_to=models.ForeignKey(Project)
img=models.ImageField(upload_to='/home/contact/python_project/all_bugs_will_reveal/'+belongs_to.file_path())
desc=models.CharField(max_length=255)
答案 0 :(得分:2)
您不能在同一模型的定义中引用模型中的字段,因为在读取定义时尚未定义类。
解决方案是使用upload_to
的callable - 如图in the documentation所示,这可以是一个给出参数instance
和filename
的函数,所以你可以致电instance.filepath()
以获得正确的路径。