検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 195 for Object (0.109 sec.)
テストツール — Django 4.0.6 ドキュメント 4700
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 使ってください。) You may also provide any file-like object (e.g., StringIO or BytesIO ) as a file handle. If ... you're uploading to an ImageField , the object needs a name attribute that passes the validate_im ... : The exception instance. traceback : A traceback object which encapsulates the call stack at the point whe ... t up data for the whole TestCase cls . foo = Foo . objects . create ( bar = "Test" ) ... def test1 ( self ): ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
django.core.exceptions — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... is not populated yet""" pass [ドキュメント] class ObjectDoesNotExist ( Exception ): """The requested object ... riable_failure = True [ドキュメント] class MultipleObjectsReturned ( Exception ): """The query returned mult ... iple objects when only one was expected.""" pass [ドキュメント ...
https://man.plustar.jp/django/_modules/django/core/exceptions.html - [similar]
FAQ: Django を使う — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ったなら、テンプレートで画像の URL を指定するには {{ object.mug_shot.url }} と書きます。 どうやったら、全てのテ ...
https://man.plustar.jp/django/faq/usage.html - [similar]
WSGI とともにデプロイするには — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... apply WSGI middleware you can wrap the application object. For instance you could add these lines at the bot ...
https://man.plustar.jp/django/howto/deployment/wsgi/index.html - [similar]
PostgreSQL specific database constraints — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . condition ¶ ExclusionConstraint. condition ¶ A Q object that specifies the condition to restrict a constra ...
https://man.plustar.jp/django/ref/contrib/postgres/constraints.html - [similar]
Database Functions — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jango.db.models.functions import Cast >>> Author . objects . create ( age = 25 , name = 'Margaret Smith' ) > ... >> author = Author . objects . annotate ( ... age_as_float = Cast ( 'age' , ou ... o.db.models.functions import Coalesce >>> Author . objects . create ( name = 'Margaret Smith' , goes_by = 'M ... aggie' ) >>> author = Author . objects . annotate ( ... screen_name = Coalesce ( 'alias' ...
https://man.plustar.jp/django/ref/models/database-functions.html - [similar]
Model _meta API — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... an instance of an django.db.models.options.Options object. Methods that it provides can be used to: Retrieve ... ックへ Constraints reference 次のトピックへ Related objects reference 関連キーワード fields , meta , include ...
https://man.plustar.jp/django/ref/models/meta.html - [similar]
設定 — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... model_name" strings to functions that take a model object and return its URL. This is a way of inserting or ... utf-8' Default charset to use for all HttpResponse objects, if a MIME type isn't manually specified. Used wh ... ] (空のリスト) List of compiled regular expression objects representing User-Agent strings that are not allo ... ] (空のリスト) List of compiled regular expression objects describing URLs that should be ignored when repor ...
https://man.plustar.jp/django/ref/settings.html - [similar]
Django でのユーザー認証 — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 試行数の制限 サードパーティに対する認証 (OAuthなど) Object-level permissions インストール ¶ 認証関連をサポート ...
https://man.plustar.jp/django/topics/auth/index.html - [similar]
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 4657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... テムを提供します。 The password attribute of a User object is a string in this format: <algorithm>$<iteration ... pps . get_model ( 'auth' , 'User' ) users = User . objects . filter ( password__startswith = 'sha1$' ) hashe ... 't applied at the model level, for example in User.objects.create_user() and create_superuser() , because we ... l the error messages from the validators. The user object is optional: if it's not provided, some validators ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]