検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 359 for from (0.110 sec.)
リクエストとレスポンスのオブジェクト — Django 4.0.6 ドキュメント 4771
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... orm data, use HttpRequest.POST . You can also read from an HttpRequest using a file-like interface with Ht ... Any subsequent attribute accesses (such as reading from GET or POST ) will use the new encoding value. Use ... all uploaded files. Each key in FILES is the name from the <input type="file" name=""> . Each value in FI ... ed headers (plus Content-Length and Content-Type ) from the request. The name of each header is stylized w ...
https://man.plustar.jp/django/ref/request-response.html - [similar]
SchemaEditor — Django 4.0.6 ドキュメント 4771
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... or. remove_index ( model , index ) ¶ Removes index from model 's table. add_constraint() ¶ BaseDatabaseSch ... traint ( model , constraint ) ¶ Removes constraint from model 's table. alter_unique_together() ¶ BaseData ... value; this will add or remove unique constraints from the model's table until they match the new value. ... ex_together value; this will add or remove indexes from the model's table until they match the new value. ...
https://man.plustar.jp/django/ref/schema-editor.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 4771
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... changes you'll want to be aware of when upgrading from Django 2.0 or earlier. We've dropped some features ... port frozen environments, migrations may be loaded from .pyc files. モデル ¶ Models can now use __init_sub ... class__() from PEP 487 . A BinaryField may now be set to editable ... e a database doesn't support a feature are changed from NotImplementedError to django.db.NotSupportedError ...
https://man.plustar.jp/django/releases/2.1.html - [similar]
暗号署名 — Django 4.0.6 ドキュメント 4771
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... of web application security is to never trust data from untrusted sources. Sometimes it can be useful to p ... 次のようにして Signer インスタンスを作成します。 >>> from django.core.signing import Signer >>> signer = Sig ... o.core.signing.BadSignature 例外が起こります。 >>> from django.core import signing >>> value += 'm' >>> tr ... into different namespaces. A signature that comes from one namespace (a particular salt value) cannot be ...
https://man.plustar.jp/django/topics/signing.html - [similar]
django.core.files.uploadedfile — Django 4.0.6 ドキュメント 4744
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Classes representing uploaded files. """ import os from io import BytesIO from django.conf import settings ... from django.core.files import temp as tempfile from dja ... ngo.core.files.base import File from django.core.files.utils import validate_file_name ... , len ( content ), None , None ) @classmethod def from_dict ( cls , file_dict ): """ Create a SimpleUploa ...
https://man.plustar.jp/django/_modules/django/core/files/uploadedfile.html - [similar]
はじめての Django アプリ作成、その 4 — Django 4.0.6 ドキュメント 4744
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... olls/views.py に追加してください: polls/views.py ¶ from django.http import HttpResponse , HttpResponseRedi ... rect from django.shortcuts import get_object_or_404 , render ... from django.urls import reverse from .models import Cho ... fully dealing # with POST data. This prevents data from being posted twice if a # user hits the Back butto ...
https://man.plustar.jp/django/intro/tutorial04.html - [similar]
Signals — Django 4.0.6 ドキュメント 4744
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... emove" Sent before one or more objects are removed from the relation. "post_remove" Sent after one or more ... objects are removed from the relation. "pre_clear" Sent before the relation ... he class of the objects that are added to, removed from or cleared from the relation. pk_set For the pre_a ... rimary key values that was submitted to be removed from the relation. This is not dependent on whether the ...
https://man.plustar.jp/django/ref/signals.html - [similar]
Django 3.2 release notes — Django 4.0.6 ドキュメント 4744
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... changes you'll want to be aware of when upgrading from Django 3.1 or earlier. We've begun the deprecation ... els.AutoField' or configure it on a per-app basis: from django.apps import AppConfig class MyAppConfig ( A ... utoField' name = 'my_app' or on a per-model basis: from django.db import models class MyModel ( models . M ... n expressions and database functions. For example: from django.db import models from django.db.models impo ...
https://man.plustar.jp/django/releases/3.2.html - [similar]
django.middleware.clickjacking — Django 4.0.6 ドキュメント 4717
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tection against a malicious site loading resources from your site in a hidden frame. """ from django.conf ... import settings from django.utils.deprecation import MiddlewareMixin [ド ... rame within the same site. To prevent the response from being loaded in a frame in any site, set X_FRAME_O ... set for the X_FRAME_OPTIONS header. Use the value from the X_FRAME_OPTIONS setting, or 'DENY' if not set. ...
https://man.plustar.jp/django/_modules/django/middleware/clickjacking.html - [similar]
PostgreSQL specific model fields — Django 4.0.6 ドキュメント 4717
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... c model fields ¶ All of these fields are available from the django.contrib.postgres.fields module. Indexin ... nce of ArrayField as the base_field . For example: from django.contrib.postgres.fields import ArrayField f ... stgreSQL requires that the arrays are rectangular: from django.contrib.postgres.fields import ArrayField f ... ayField . We will use the following example model: from django.contrib.postgres.fields import ArrayField f ...
https://man.plustar.jp/django/ref/contrib/postgres/fields.html - [similar]