📜  FilePathField – Django 模型

📅  最后修改于: 2022-05-13 01:55:47.055000             🧑  作者: Mango

FilePathField – Django 模型

FilePathField 是一个 CharField,它的选择仅限于文件系统上某个目录中的文件名。 FilePathField 实例在您的数据库中创建为varchar列,默认最大长度为 100 个字符。

句法:

FilePathField 具有以下特殊参数,其中第一个是必需的:

  • FilePathField.path – 此属性是必需的。此 FilePathField 应从中获取选择的目录的绝对文件系统路径。示例: "/home/images"
  • FilePathField.match – 一个正则表达式,作为一个字符串,FilePathField 将用于过滤文件名。请注意,正则表达式将应用于基本文件名,而不是完整路径。示例:“ foo.*\.txt$” ,它将匹配名为foo23.txt但不匹配 bar.txtfoo23.png的文件。
  • FilePathField.recursiveTrueFalse 。默认为False 。指定是否应包含 path 的所有子目录
  • FilePathField.allow_filesTrueFalse 。默认为True 。指定是否应包含指定位置的文件。 this 或allow_folders必须为 True。
  • FilePathField.allow_foldersTrueFalse 。默认为False 。指定是否应包括指定位置的文件夹。 this 或allow_files必须为 True。

要考虑的一个要点是匹配适用于基本文件名,而不是完整路径。所以,这个例子:

FilePathField(path ="/home/images",
              match ="foo.*", 
              recursive = True)

…将匹配/home/images/foo.png但不匹配/home/images/foo/bar.png因为匹配适用于基本文件名( foo.pngbar.png )。

Django 模型文件路径字段说明

使用示例说明 FilePathField。考虑一个名为geeks的项目,它有一个名为geeksforgeeks的应用程序。

极客应用的models.py文件中输入以下代码。

from django.db import models
from django.db.models import Model
# Create your models here.
  
class GeeksModel(Model):
    geeks_field = models.FilePathField(path ="/home/naveen/projects/geeksforgeeks/images")

将极客应用添加到INSTALLED_APPS

# Application definition
  
INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'geeks',
]

现在,当我们从终端运行makemigrations命令时,

Python manage.py makemigrations

将在geeks目录中创建一个名为 migrations 的新文件夹,其中包含一个名为0001_initial.py的文件

# Generated by Django 2.2.5 on 2019-09-25 06:00
  
from django.db import migrations, models
  
class Migration(migrations.Migration):
  
    initial = True
  
    dependencies = [
    ]
  
    operations = [
        migrations.CreateModel(
            name ='GeeksModel',
            fields =[
                ('id', 
                  models.AutoField(
                  auto_created = True,
                  primary_key = True,
                  serialize = False, 
                  verbose_name ='ID'
                )),
                ('geeks_field', models.FilePathField(
                 path ="/home/naveen/projects/geeksforgeeks/images")),
            ],
        ),
    ]

现在运行,

Python manage.py migrate

因此,当您在项目上运行迁移时,会创建一个geeks_field FilePathField 。它是在数据库中存储任何类型文件的字段。

如何使用 FilePathField ?

FilePathField 用于将文件存储到数据库中。 FilePathField 中可以是任何类型的文件。让我们尝试在上面创建的模型中存储图像。

  • 要开始创建模型实例,请使用以下命令创建一个管理员帐户。
    Python manage.py createsuperuser
  • 输入用户名、电子邮件和安全密码。然后在您的浏览器中输入以下 URL。
    http://localhost:8000/admin/

    文件字段-django-models-1

  • 转到Geeks Models前面添加
    django-filepathfield-models
  • 选择您要上传的文件,然后单击保存。现在让我们在管理服务器中检查它。我们已经创建了 GeeksModel 的一个实例。
    FilePathField django 模型

字段选项

字段选项是赋予每个字段的参数,用于应用某些约束或将特定特征赋予特定字段。例如,向 FilePathField 添加参数null = True将使其能够在关系数据库中存储该表的空值。
以下是 FilePathField 可以使用的字段选项和属性。

Field OptionsDescription
NullIf True, Django will store empty values as NULL in the database. Default is False.
BlankIf True, the field is allowed to be blank. Default is False.
db_columnThe name of the database column to use for this field. If this isn’t given, Django will use the field’s name.
DefaultThe default value for the field. This can be a value or a callable object. If callable it will be called every time a new object is created.
help_textExtra “help” text to be displayed with the form widget. It’s useful for documentation even if your field isn’t used on a form.
primary_keyIf True, this field is the primary key for the model.
editableIf False, the field will not be displayed in the admin or any other ModelForm. They are also skipped during model validation. Default is True.
error_messagesThe error_messages argument lets you override the default messages that the field will raise. Pass in a dictionary with keys matching the error messages you want to override.
help_textExtra “help” text to be displayed with the form widget. It’s useful for documentation even if your field isn’t used on a form.
verbose_nameA human-readable name for the field. If the verbose name isn’t given, Django will automatically create it using the field’s attribute name, converting underscores to spaces.
validatorsA list of validators to run for this field. See the validators documentation for more information.
UniqueIf True, this field must be unique throughout the table.