-
必需的。
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)
本文介绍 django.db.models.FilePathField.path
的用法。
声明
FilePathField.path
相关用法
- Python Django File.save用法及代码示例
- Python File next()用法及代码示例
- Python File tell()用法及代码示例
- Python File seek()用法及代码示例
- Python File writable()用法及代码示例
- Python File close()用法及代码示例
- Python Django FileField.upload_to用法及代码示例
- Python File flush()用法及代码示例
- Python File write()用法及代码示例
- Python File readline()用法及代码示例
- Python File read()用法及代码示例
- Python File truncate()用法及代码示例
- Python File fileno()用法及代码示例
- Python File open()用法及代码示例
- Python File isatty()用法及代码示例
- Python File readlines()用法及代码示例
- Python File seekable()用法及代码示例
- Python File readable()用法及代码示例
- Python File writelines()用法及代码示例
- Python OpenCV Filter2D()用法及代码示例
- Python Django FilteredRelation用法及代码示例
- Python Django Field.description用法及代码示例
- Python Django Field.type_name用法及代码示例
- Python Django Field.help_text用法及代码示例
- Python Django Field.width用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.db.models.FilePathField.path。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。