你给我的代码提示错误file_display.short_description = 'File Type' AttributeError: 'property' object has no attribute 'short_description'
时间: 2023-07-14 08:10:34 浏览: 175
抱歉,我之前给出的代码有误。在Django中,`short_description`属性是用于设置在Admin后台显示字段名称的,而不是用于模型字段本身。下面是修正后的代码示例:
```python
from django.db import models
class UploadedFile(models.Model):
file = models.FileField(upload_to='uploads/')
name = models.CharField(max_length=255)
size = models.IntegerField()
type = models.CharField(max_length=255)
uploaded_at = models.DateTimeField(auto_now_add=True)
def __str__(self):
return self.name
def file_type(self):
return self.file.file.content_type
file_type.short_description = 'File Type'
```
在这个示例中,我们创建了一个名为`file_type`的模型方法,该方法返回文件的类型。然后,我们使用`file_type.short_description`属性来设置在Admin后台中显示字段名称为"File Type"。
这样,在Admin后台中查看`UploadedFile`模型时,将显示一个名为"File Type"的字段,并显示相应的文件类型。
请注意,你需要在Admin后台注册`UploadedFile`模型以使其可见,并设置适当的Admin选项。
希望这次能解决你的问题。如果还有其他疑问,请随时提问。
阅读全文
相关推荐
![-](https://img-home.csdnimg.cn/images/20241231044930.png)
![-](https://img-home.csdnimg.cn/images/20241231044930.png)
![-](https://img-home.csdnimg.cn/images/20241231044955.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![png](https://img-home.csdnimg.cn/images/20210720083516.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![py](https://img-home.csdnimg.cn/images/20250102104920.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)