検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 238 for data (0.096 sec.)
The Django Template Language — Django 4.0.6 ドキュメント 5031
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the web page being bolded! Clearly, user-submitted data shouldn't be trusted blindly and inserted directly ... safe フィルタを使います: This will be escaped: {{ data }} This will not be escaped: {{ data | safe }} saf ... afe)であるという意味だと考えてください。 例えば、 data に '<b>' が入っていた場合、出力は以下のようになりま ... utoescape off %} This will not be auto-escaped: {{ data }} . Nor this: {{ other_data }} {% autoescape on % ...
https://man.plustar.jp/django/ref/templates/language.html - [similar]
検索 — Django 4.0.6 ドキュメント 5031
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e using PostgreSQL, Django provides a selection of database specific tools to allow you to leverage more c ... omplex querying options. Other databases have different selections of tools, possibly ... ostgreSQL to demonstrate the kind of functionality databases may have. Searching in other databases All of ... entirely on public APIs such as custom lookups and database functions . Depending on your database, you sh ...
https://man.plustar.jp/django/topics/db/search.html - [similar]
ウィジェット — Django 4.0.6 ドキュメント 4991
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... from the FORM_RENDERER setting is used. value_from_datadict ( data , files , name ) ¶ データとこのウィジェ ... れなかった場合は None を返します。 また、 value_from_datadict はフォームデータの処理中に複数回呼び出される可 ... 仕組みを実装する必要があります。 value_omitted_from_data ( data , files , name ) ¶ data と files のディクシ ... d unselected <select multiple> don't appear in the data of an HTML form submission, so it's unknown whethe ...
https://man.plustar.jp/django/ref/forms/widgets.html - [similar]
クエリー式 — Django 4.0.6 ドキュメント 4991
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ossible to refer to model field values and perform database operations using them without actually having ... to pull them out of the database into Python memory. Instead, Django uses the F ... ssion that describes the required operation at the database level. Let's try this with an example. Normall ... ulled the value of reporter.stories_filed from the database into memory and manipulated it using familiar ...
https://man.plustar.jp/django/ref/models/expressions.html - [similar]
Django 3.1 release notes — Django 4.0.6 ドキュメント 4991
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... sting Django projects. JSONField for all supported database backends ¶ Django now includes models.JSONFiel ... forms.JSONField that can be used on all supported database backends. Both fields support the use of custo ... mport models class ContactInfo ( models . Model ): data = models . JSONField () ContactInfo . objects . cr ... eate ( data = { 'name' : 'John' , 'cities' : [ 'London' , 'Cam ...
https://man.plustar.jp/django/releases/3.1.html - [similar]
組み込みタグとフィルタ — Django 4.0.6 ドキュメント 4960
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 辞書の各要素にアクセスしたい場合にも便利です。例えば data という辞書がある場合、以下のように辞書内のキーと値 ... を表示できます: {% for key , value in data.items %} {{ key }} : {{ value }} {% endfor %} ドッ ... が優先することに注意してください。したがって、もしも data 辞書が 'items' という名前のキーを持っていたなら、 ... data.items は data.items() ではなく data['items'] の値を出力します。テ ...
https://man.plustar.jp/django/ref/templates/builtins.html - [similar]
Django 2.2.11 release notes — Django 4.0.6 ドキュメント 4960
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 4, 2020 Django 2.2.11 fixes a security issue and a data loss bug in 2.2.10. CVE-2020-9402: Potential SQL i ... a suitably crafted tolerance . Bugfixes ¶ Fixed a data loss possibility in the select_for_update() . When ...
https://man.plustar.jp/django/releases/2.2.11.html - [similar]
Database instrumentation — Django 4.0.6 ドキュメント 4960
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ontents | Index | Modules « previous | up | next » Database instrumentation ¶ To help you understand and c ... stalling wrapper functions around the execution of database queries. For example, wrappers can count queri ... issued while rendering a template with prefetched data). The wrappers are modeled after middleware -- the ... all that callable to invoke the (possibly wrapped) database query, and they can do what they want around t ...
https://man.plustar.jp/django/topics/db/instrumentation.html - [similar]
索引 — Django 4.0.6 ドキュメント 4919
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ョン --all diffsettings コマンドラインオプション dumpdata コマンドラインオプション makemessages コマンドライ ... ンオプション --app loaddata コマンドラインオプション --backwards sqlmigrate コ ... プション --command shell コマンドラインオプション --database changepassword コマンドラインオプション check ... インオプション dbshell コマンドラインオプション dumpdata コマンドラインオプション flush コマンドラインオプシ ...
https://man.plustar.jp/django/genindex.html - [similar]
はじめての Django アプリ作成、その 4 — Django 4.0.6 ドキュメント 4919
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... because the act of submitting this form will alter data server-side. Whenever you create a form that alter ... s data server-side, use method="post" . This tip isn't sp ... nseRedirect after successfully dealing # with POST data. This prevents data from being posted twice if a # ... ponseRedirect after successfully dealing with POST data. This tip isn't specific to Django; it's good web ...
https://man.plustar.jp/django/intro/tutorial04.html - [similar]