当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Django FilePathField.path用法及代码示例


本文介绍 django.db.models.FilePathField.path 的用法。

声明

FilePathField.path

必需的。 FilePathField 应该从中获得选择的目录的绝对文件系统路径。示例:"/home/images"

path 也可以是可调用的,例如在运行时动态设置路径的函数。例子:

import os
from django.conf import settings
from django.db import models

def images_path():
    return os.path.join(settings.LOCAL_FILE_DIR, 'images')

class MyModel(models.Model):
    file = models.FilePathField(path=images_path)

相关用法


注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.db.models.FilePathField.path。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。