検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 238 for data (0.038 sec.)
アップロードファイルとアップロードハンドラ — Django 4.0.6 ドキュメント 7201
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... le [ソース] ¶ During file uploads, the actual file data is stored in request.FILES . Each entry in this di ... : UploadedFile. read () ¶ Read the entire uploaded data from the file. Be careful with this method: if the ... le (e.g. text/plain or application/pdf ). Like any data supplied by the user, you shouldn't trust that the ... loadHandler [ソース] ¶ Upload handler that streams data into a temporary file using TemporaryUploadedFile ...
https://man.plustar.jp/django/ref/files/uploads.html - [similar]
GeoDjango — Django 4.0.6 ドキュメント 7119
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... cations and harness the power of spatially enabled data. GeoDjango Tutorial はじめに Setting Up Geographic ... Data Geographic Models Importing Spatial Data Spatial Q ... ueries Putting your data on the map GeoDjango Installation オーバービュー R ... ial Field Options Geometry Field Options GeoDjango Database API Spatial Backends Creating and Saving Model ...
https://man.plustar.jp/django/ref/contrib/gis/index.html - [similar]
Django 1.5 release notes — Django 4.0.6 ドキュメント 6712
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... g you specify which fields are written back to the database when you call save() . This can help in high-c ... been ported to Python 3 yet, including: the MySQL database backend (depends on MySQLdb) ImageField (depen ... w use your own model as the store for user-related data. If your project needs a username with more than 3 ... the note on management commands output ). The dumpdata management command outputs one row at a time, prev ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
Django 1.2.5 release notes — Django 4.0.6 ドキュメント 6671
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... his opened the door to several potentially serious data-loss scenarios, including rolled-back transactions ... via e.g. cron). Use of custom SQL to load initial data in tests ¶ Django provides a custom SQL hooks as a ... way to inject hand-crafted SQL into the database synchronization process. One of the possible u ... ses for this custom SQL is to insert data into your database. If your custom SQL contains IN ...
https://man.plustar.jp/django/releases/1.2.5.html - [similar]
Form fields — Django 4.0.6 ドキュメント 6641
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ot just pass a dictionary of the initial values as data when displaying the form? Well, if you do that, yo ... () ... comment = forms . CharField () >>> default_data = { 'name' : 'Your name' , 'url' : 'http://' } >>> ... f = CommentForm ( default_data , auto_id = False ) >>> print ( f ) <tr><th>Name:< ... or bound forms, the HTML output will use the bound data. Also note that initial values are not used as "fa ...
https://man.plustar.jp/django/ref/forms/fields.html - [similar]
クエリを作成する — Django 4.0.6 ドキュメント 6641
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... stances of Entry and Blog are already saved to the database (so we can retrieve them below): >>> from blog ... . For example, this returns the first Entry in the database, after ordering entries alphabetically by head ... irst time a QuerySet is evaluated -- and, hence, a database query happens -- Django saves the query result ... in Entry . objects . all ()]) That means the same database query will be executed twice, effectively doub ...
https://man.plustar.jp/django/topics/db/queries.html - [similar]
テストツール — Django 4.0.6 ドキュメント 6600
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... のメソッドを自由に使うことができます。 get ( path , data = None , follow = False , secure = False , ** extr ... ついては、下のセクションにドキュメントされています。 data ディクショナリ内の key-value ペアは、GET の URL の ... の引数がすでに URL エンコードされた形式である場合は、data 引数の代わりにエンコード済みの文字列を使うことがで ... /?name=fred&age=7' ) エンコード済みの GET データと data 引数の両方が与えられた場合には、data 引数の方が優先 ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
クラスベースのビューでミックスインを使用する — Django 4.0.6 ドキュメント 6559
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ntextMixin Every built in view which needs context data, such as for rendering a template (including Templ ... ateResponseMixin above), should call get_context_data() passing any data they want to ensure is in there ... as keyword arguments. get_context_data() returns a dictionary; in ContextMixin it returns ... を検索します)。 SingleObjectMixin はまた get_context_data() メソッドも提供しています。このメソッドでは、テン ...
https://man.plustar.jp/django/topics/class-based-views/mixins.html - [similar]
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 6529
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ls will prevent some obscure problems. See Unicode data for full details. モデル ¶ Common changes to your ... ble, use the safe filter: This will be escaped: {{ data }} This will not be escaped: {{ data | safe }} To ... ます。 If you're using SQLite, you need to force the database to view the appropriate columns as decimal typ ... han floats. To do this, you'll need to reload your data. Do this after you have made the change to using D ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]
PostgreSQL specific form fields and widgets — Django 4.0.6 ドキュメント 6447
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... any HTML, but it is used to process the submitted data and validate it. For example: >>> from django impo ... }) >>> form . is_valid () True >>> form . cleaned_data {'numbers': [1, 2, 3]} >>> form = NumberListForm ( ... mma: , . This value is used to split the submitted data. It allows you to chain SimpleArrayField for multi ... dimensional data: >>> from django import forms >>> from django.cont ...
https://man.plustar.jp/django/ref/contrib/postgres/forms.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT