當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。