検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 198 for File (0.023 sec.)
File オブジェクト — Django 4.0.6 ドキュメント 10382
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ontents | Index | Modules « previous | up | next » File オブジェクト ¶ django.core.files モジュールとそのサ ... ドリングに関するビルトインクラスが定義されています。 File クラス ¶ class File ( file_object , name = None ) ... [ソース] ¶ File クラスは、Python の file object に Django 特有の追 ... 必要がある場合には、Django はこのクラスを使います。 File オブジェクトには次の属性とメソッドを持ちます。 nam ...
https://man.plustar.jp/django/ref/files/file.html - [similar]
django.core.files.uploadhandler — Django 4.0.6 ドキュメント 10123
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Table of contents | Index | Modules up django.core.files.uploadhandler のソースコード """ Base file upload ... from django.conf import settings from django.core.files.uploadedfile import InMemoryUploadedFile , Tempor ... aryUploadedFile from django.utils.module_loading import import_str ... ing __all__ = [ "UploadFileException" , "StopUpload" , "SkipFile" , "FileUploa ...
https://man.plustar.jp/django/_modules/django/core/files/uploadhandler.html - [similar]
ファイルの管理 — Django 4.0.6 ドキュメント 10123
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ファイルの管理 ¶ This document describes Django's file access APIs for files such as those uploaded by a ... for other purposes. If you want to handle "static files" (JS, CSS, etc.), see How to manage static files ... ages, JavaScript, CSS) . By default, Django stores files locally, using the MEDIA_ROOT and MEDIA_URL setti ... やってファイルを保存するかの複雑なカスタムを許可する file storage systems を提供しています。このドキュメント ...
https://man.plustar.jp/django/topics/files.html - [similar]
File storage API — Django 4.0.6 ドキュメント 9918
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ontents | Index | Modules « previous | up | next » File storage API ¶ Getting the current storage class ¶ ... rrent default storage system as defined by DEFAULT_FILE_STORAGE . DefaultStorage uses get_storage_class() ... rrent default storage system as defined by DEFAULT_FILE_STORAGE . If import_path is provided, get_storage_ ... will be raised if the import is unsuccessful. The FileSystemStorage class ¶ class FileSystemStorage ( loc ...
https://man.plustar.jp/django/ref/files/storage.html - [similar]
django.core.files.uploadedfile — Django 4.0.6 ドキュメント 9757
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Table of contents | Index | Modules up django.core.files.uploadedfile のソースコード """ Classes represent ... ing uploaded files. """ import os from io import BytesIO from django ... .conf import settings from django.core.files import temp as tempfile from django.core.files.ba ... se import File from django.core.files.utils import validate_file_ ...
https://man.plustar.jp/django/_modules/django/core/files/uploadedfile.html - [similar]
django.core.files.base — Django 4.0.6 ドキュメント 9336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Table of contents | Index | Modules up django.core.files.base のソースコード import os from io import Byte ... , StringIO , UnsupportedOperation from django.core.files.utils import FileProxyMixin from django.utils.fun ... tional import cached_property [ドキュメント] class File ( FileProxyMixin ): DEFAULT_CHUNK_SIZE = 64 * 2 ** ... 10 def __init__ ( self , file , name = None ): self . file = file if name is Non ...
https://man.plustar.jp/django/_modules/django/core/files/base.html - [similar]
django.core.files.images — Django 4.0.6 ドキュメント 9110
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Table of contents | Index | Modules up django.core.files.images のソースコード """ Utility functions for h ... ne. """ import struct import zlib from django.core.files import File [ドキュメント] class ImageFile ( File ... ): """ A mixin for use alongside django.core.files.base.File, which provides additional features for ... elf . _dimensions_cache def get_image_dimensions ( file_or_path , close = False ): """ Return the (width, ...
https://man.plustar.jp/django/_modules/django/core/files/images.html - [similar]
アップロードファイルとアップロードハンドラ — Django 4.0.6 ドキュメント 9110
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ードハンドラ ¶ アップロードファイル ¶ class UploadedFile [ソース] ¶ During file uploads, the actual file da ... ta is stored in request.FILES . Each entry in this dictionary is an UploadedFil ... ct (or a subclass) -- a wrapper around an uploaded file. You'll usually use one of these methods to access ... the uploaded content: UploadedFile. read () ¶ Read the entire uploaded data from the ...
https://man.plustar.jp/django/ref/files/uploads.html - [similar]
ファイルのアップロード — Django 4.0.6 ドキュメント 8625
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... イルアップロードを扱うとき、ファイルデータは request.FILES に格納されます ( request についての詳細は request ... のアップロードの基本 ¶ Consider a form containing a FileField : forms.py ¶ from django import forms class U ... ploadFileForm ( forms . Form ): title = forms . CharField ( ... max_length = 50 ) file = forms . FileField () このフォームをハンドリングす ...
https://man.plustar.jp/django/topics/http/file-uploads.html - [similar]
The staticfiles app — Django 4.0.6 ドキュメント 8366
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Index | Modules « previous | up | next » The staticfiles app ¶ django.contrib.staticfiles collects static ... production. 参考 For an introduction to the static files app and some usage examples, see How to manage st ... atic files (e.g. images, JavaScript, CSS) . For guidelines o ... n deploying static files, see How to deploy static files . 設定 ¶ See stat ...
https://man.plustar.jp/django/ref/contrib/staticfiles.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT