検索

phrase: max: clip:
target: order:
Results of 301 - 310 of about 312 for use (0.411 sec.)
How to manage static files (e.g. images, JavaScript, CSS) — Django 4.0.6 ドキュ... 3797
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... , but it would actually be a bad idea. Django will use the first static file it finds whose name matches, ... _ROOT に集められていることを前提にしています。 Because of this, staticfiles ships its own django.contrib. ...
https://man.plustar.jp/django/howto/static-files/index.html - [similar]
はじめての Django アプリ作成、その 5 — Django 4.0.6 ドキュメント 3797
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ent >>> # create an instance of the client for our use >>> client = Client () さて、これでクライアントに仕 ... expect to find something at '/polls/' >>> # we'll use 'reverse()' rather than a hardcoded URL >>> from d ...
https://man.plustar.jp/django/intro/tutorial05.html - [similar]
django.core.validators — Django 4.0.6 ドキュメント 3760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ed separately r "(?:[^\s:@/]+(?::[^\s:@/]*)?@)?" # user:pass authentication r "(?:" + ipv4_re + "|" + ipv ... he name and one byte for the trailing dot # that's used to indicate absolute names in DNS. if len ( urlsp ... "Enter a valid email address." ) code = "invalid" user_regex = _lazy_re_compile ( # dot-atom r "(^[-!#$% ... code = self . code , params = { "value" : value }) user_part , domain_part = value . rsplit ( "@" , 1 ) i ...
https://man.plustar.jp/django/_modules/django/core/validators.html - [similar]
FAQ: 一般的な質問 — Django 4.0.6 ドキュメント 3760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... できるだけ活用できるように設計されてい ます。 Django uses a "shared-nothing" architecture, which means you ... riate. However, Django was developed precisely because we were unhappy with the status quo, so please be ... aware that "because <Framework X> does it" is not going to be sufficie ... sas) を使ってください。 If you need a web address, use https://www.djangoproject.com/ . 名称が必要なら、何 ...
https://man.plustar.jp/django/faq/general.html - [similar]
はじめての Django アプリ作成、その 4 — Django 4.0.6 ドキュメント 3760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s opposed to method="get" ) is very important, because the act of submitting this form will alter data se ... er you create a form that alters data server-side, use method="post" . This tip isn't specific to Django; ... This prevents data from being posted twice if a # user hits the Back button. return HttpResponseRedirect ... template and returning the rendered template. Because this is so common, Django provides a shortcut, cal ...
https://man.plustar.jp/django/intro/tutorial04.html - [similar]
設計思想 — Django 4.0.6 ドキュメント 3760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... em doesn't care which template system a programmer uses. Django は利便性のためにフルスタックとなってはいま ... SQL -- entire statements, or just custom WHERE clauses as custom parameters to API calls. URL デザイン ¶ ... e may put stories at /stories/ , while another may use /news/ . Infinite flexibility ¶ URLは可能な限り柔軟 ... e" URLs so that search-engine robots don't get confused. This is the reasoning behind the APPEND_SLASH se ...
https://man.plustar.jp/django/misc/design-philosophies.html - [similar]
Signals — Django 4.0.6 ドキュメント 3760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... The authentication framework sends signals when a user is logged in / out . Model signals ¶ The django.d ... tion (the class itself) args [] (an empty list because there were no positional arguments passed to __ini ... in receivers of pre_init or post_init signals because they would be executed for each instance returned ... nsistent state yet. using The database alias being used. update_fields The set of fields to update as pas ...
https://man.plustar.jp/django/ref/signals.html - [similar]
ビルトインのクラスベースのジェネリックビュー — Django 4.0.6 ドキュメント 3760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ¶ Writing web applications can be monotonous, because we repeat certain patterns again and again. Django ... リストビューの例としては、 TalkListView や RegisteredUserListView といったものが考えられます。1つのトークの ... is powerful. For instance, if we wanted, we could use self.request.user to filter using the current user ...
https://man.plustar.jp/django/topics/class-based-views/generic-display.html - [similar]
ファイルのアップロード — Django 4.0.6 ドキュメント 3760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... you are using a class-based view, you will need to use csrf_exempt() on its dispatch() method and csrf_pr ...
https://man.plustar.jp/django/topics/http/file-uploads.html - [similar]
テストを書いて実行する — Django 4.0.6 ドキュメント 3760
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... arnings. Django, like many other Python libraries, uses these warnings to flag when features are going aw ... he next run, you'll be asked whether you want to reuse or destroy the database. Use the test --noinput op ... nd automatically destroy the database. This can be useful when running tests on a continuous integration ... スを選んで指定することができます。 PostgreSQL では、 USER が、ビルトインの postgres データベースへの読み取り ...
https://man.plustar.jp/django/topics/testing/overview.html - [similar]