検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 118 for Full (0.029 sec.)
セキュリティ上の問題のアーカイブ — Django 4.0.6 ドキュメント 18085
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... QuerySet.annotate() , aggregate() , and extra() . Full description Django 4.0 (patch) Django 3.2 (patch) ... ion via QuerySet.explain(**options) on PostgreSQL. Full description Django 4.0 (patch) Django 3.2 (patch) ... 22818 ¶ Possible XSS via {% debug %} template tag. Full description 影響を受けるバージョン ¶ Django 4.0 (p ... 3 ¶ Denial-of-service possibility in file uploads. Full description 影響を受けるバージョン ¶ Django 4.0 (p ...
https://man.plustar.jp/django/releases/security.html - [similar]
Full text search — Django 4.0.6 ドキュメント 8568
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ontents | Index | Modules « previous | up | next » Full text search ¶ The database functions in the django ... ostgres.search module ease the use of PostgreSQL's full text search engine . For the examples in this docu ... entation . The search lookup ¶ A common way to use full text search is to search a single term against a s ... earch' requires PostgreSQL ≥ 11. Read PostgreSQL's Full Text Search docs to learn about differences and sy ...
https://man.plustar.jp/django/ref/contrib/postgres/search.html - [similar]
django.urls functions for use in URLconfs — Django 4.0.6 ドキュメント 8331
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o , must match the regular expression pattern ( re.fullmatch() is used). The view , kwargs and name argume ... ) . Changed in Django 2.2.25: In older versions, a full-match wasn't required for a route which ends with ... espace) , namespace=None ) A function that takes a full Python import path to another URLconf module that ... dler400 ¶ A callable, or a string representing the full Python import path to the view that should be call ...
https://man.plustar.jp/django/ref/urls.html - [similar]
Django の概要 — Django 4.0.6 ドキュメント 8244
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... b import models class Reporter ( models . Model ): full_name = models . CharField ( max_length = 70 ) def ... __str__ ( self ): return self . full_name class Article ( models . Model ): pub_date = ... t [] > # Create a new Reporter. >>> r = Reporter ( full_name = 'John Smith' ) # Save the object into the d ... sented as attributes on the Python object. >>> r . full_name 'John Smith' # Django provides a rich databas ...
https://man.plustar.jp/django/intro/overview.html - [similar]
ミドルウェア — Django 4.0.6 ドキュメント 7932
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dleware on your site, you should consider very carefully whether you are subject to these attacks. If you' ... en a user clicks a link, the browser will send the full URL of the linking page as the referrer. While thi ... er can suggest any of three behaviors to browsers: Full URL: send the entire URL in the Referer header. Fo ... rer-when-downgrade Instructs the browser to send a full URL as the referrer, but only when no protocol dow ...
https://man.plustar.jp/django/ref/middleware.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 7608
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e ( * args , ** kwargs ) The example above shows a full from_db() implementation to clarify how that is do ... 一意性を検証する - Model.validate_unique() モデルの full_clean() メソッドを使うと、3 つ全てのステップが実行 ... 検証を必要とするフィールドを除外した場合は、モデルの full_clean() メソッドだけを呼び出す必要があります。 Mod ... el. full_clean ( exclude = None , validate_unique = True ) ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
検索 — Django 4.0.6 ドキュメント 7284
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hought of as operations on a string of characters, full text search looks at the actual words. Depending o ... he most prominent are Elastic and Solr . These are full document-based search solutions. To use them with ... ss. PostgreSQL のサポート ¶ PostgreSQL has its own full text search implementation built-in. While not as ... farming in Argentina>, ] See the contrib.postgres Full text search document for complete details. 目次 検 ...
https://man.plustar.jp/django/topics/db/search.html - [similar]
Measurement Objects — Django 4.0.6 ドキュメント 7047
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... centimeter' )) cm Supported units ¶ Unit Attribute Full name or alias(es) km Kilometre, Kilometer mi Mile ... rns the distance unit attribute name for the given full unit name. For example: >>> Distance . unit_attnam ... Returns the area unit attribute name for the given full unit name. For example: >>> Area . unit_attname ( ...
https://man.plustar.jp/django/ref/contrib/gis/measure.html - [similar]
Django 1.0 リリースノート — Django 4.0.6 ドキュメント 7047
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r any 1.X release. See the API stability guide for full details. 後方互換性のない変更 ¶ Django 1.0 has a n ... gned with extensibility and customization in mind. Full documentation for the admin application is availab ... d systems which may or may not handle Unicode gracefully. Details are available in Django's Unicode-handli ... ing no escaping) or unsafe (requiring escaping). A full guide to this feature is in the documentation for ...
https://man.plustar.jp/django/releases/1.0.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 7047
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... password email first_name last_name 仕様については full API documentation を参照してください。 以下のドキュ ... RL the user should be redirected to after a successful login. If you set this to None , a query parameter ... page will be redirected as if they had just successfully logged in. Defaults to False . 警告 If you enable ... nForm . next : The URL to redirect to after successful login. This may contain a query string, too. site : ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT