Results of 1 - 10 of about 187 for Field (0.049 sec.)
- システムチェックフレームワーク — Django 4.0.6 ドキュメント 9542
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
lem was discovered). The object should be a model, field, or manager or any other object that defines a __s ...
s related configuration. models : Checks of model, field, and manager definitions. security : Checks securi ...
sql.E001 : MySQL/MariaDB does not allow unique CharField s to have a max_length > 255. This check was chang ...
ysql.W003 : MySQL/MariaDB may not allow unique CharField s to have a max_length > 255. ファイルの管理 ¶ New ...
-
https://man.plustar.jp/django/ref/checks.html
- [similar]
- モデルフィールドリファレンス — Django 4.0.6 ドキュメント 9103
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ファレンス ¶ このドキュメントには、Django が提供する field options と field types を含む、 Field の全ての API ...
注釈 技術的には、これらのモデルは django.db.models.fields 内で定義されていまが、利便性のため django.db.mode ...
b import models を使って、フィールドを models.<Foo>Field として参照します。 フィールドオプション ¶ 以下の引 ...
ィールドタイプで有効です。全て省略可能です。 null ¶ Field. null ¶ True``の場合、Django はデータベース内に `` ...
-
https://man.plustar.jp/django/ref/models/fields.html
- [similar]
- Form fields — Django 4.0.6 ドキュメント 8917
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ts | Index | Modules « previous | up | next » Form fields ¶ class Field ( ** kwargs ) ¶ Form クラスを作成時 ...
の一番重要な部分は、form のフィールド (field) の定義です。各フィールドにはカスタムの検証ロジック ...
があり、他にいくつかのフックもあります。 Field. clean ( value ) ¶ Although the primary way you'll ...
use Field classes is in Form classes, you can also instantia ...
-
https://man.plustar.jp/django/ref/forms/fields.html
- [similar]
- 索引 — Django 4.0.6 ドキュメント 8675
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ション startproject コマンドラインオプション --name-field ogrinspect コマンドラインオプション --natural-fore ...
itor のメソッド) add_error() (Form のメソッド) add_field() (BaseDatabaseSchemaEditor のメソッド) add_form_t ...
d (django.contrib.postgres.operations のクラス) AddField (django.db.migrations.operations のクラス) AddInde ...
first_page (Paginator の属性) allow_files (FilePathField の属性) , [1] allow_folders (FilePathField の属性) ...
-
https://man.plustar.jp/django/genindex.html
- [similar]
- How to create custom model fields — Django 4.0.6 ドキュメント 8675
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
previous | up | next » How to create custom model fields ¶ はじめに ¶ model reference ` のドキュメントには ...
法が説明されています--:class:`~django.db.models.CharField`や、:class:`~django.db.models.DateField などです。 ...
ど、より不明瞭な列タイプについては、独自のDjangoの ``Field` サブクラスを定義できます。 あるいは、標準のデータ ...
雑なPythonオブジェクトがある場合があります。 これは Field サブクラスがオブジェクトをモデルで使用するのに役立 ...
-
https://man.plustar.jp/django/howto/custom-model-fields.html
- [similar]
- フォーム API — Django 4.0.6 ドキュメント 8401
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
はありません; あとですぐ見るように、渡すデータの型は Field によって決まります。 Form. is_bound ¶ フォームイン ...
'Enter a valid email address.'], 'subject': ['This field is required.']} このディクショナリでは、キーはフィ ...
l address.'])], 'subject': [ValidationError(['This field is required.'])]} code によりエラーを特定する必要が ...
"code": "invalid"}], "subject": [{"message": "This field is required.", "code": "required"}]} By default, a ...
-
https://man.plustar.jp/django/ref/forms/api.html
- [similar]
- Model _meta API — Django 4.0.6 ドキュメント 8291
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
hods that it provides can be used to: Retrieve all field instances of a model Retrieve a single field insta ...
nce of a model by name Field access API ¶ Retrieving a single field instance of ...
a model by name ¶ Options. get_field ( field_name ) ¶ Returns the field instance given ...
a name of a field. field_name can be the name of a field on the mode ...
-
https://man.plustar.jp/django/ref/models/meta.html
- [similar]
- クエリー式 — Django 4.0.6 ドキュメント 8204
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
# Be sure to refresh it if you need to access the field. >>> company . refresh_from_db () >>> company . ti ...
re lookup syntax. from django.db.models import CharField from django.db.models.functions import Length Char ...
F ¶ An F() object represents the value of a model field, transformed value of a model field, or annotated ...
column. It makes it possible to refer to model field values and perform database operations using them ...
-
https://man.plustar.jp/django/ref/models/expressions.html
- [similar]
- SchemaEditor — Django 4.0.6 ドキュメント 8204
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
model's table from one tablespace to another. add_field() ¶ BaseDatabaseSchemaEditor. add_field ( model , ...
es multiple) to the model's table to represent the field. This will also add indexes or a unique constraint ...
if the field has db_index=True or unique=True . If the field is ...
a ManyToManyField without a value for through , instead of creating ...
-
https://man.plustar.jp/django/ref/schema-editor.html
- [similar]
- QuerySet API リファレンス — Django 4.0.6 ドキュメント 8182
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
を返します。 検索パラメータ ( **kwargs ) は以下の Field lookups で説明されているフォーマットに従わなければ ...
を返します。 検索パラメータ ( **kwargs ) は以下の Field lookups で説明されているフォーマットに従わなければ ...
() for the final result. order_by() ¶ order_by ( * fields ) ¶ デフォルトでは、 QuerySet の返り値はモデルの ...
並び替えることは許されています(たとえば、 ManyToManyField フィールド、もしくは ForeignKey フィールドの逆参照 ...
-
https://man.plustar.jp/django/ref/models/querysets.html
- [similar]