検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 195 for Object (0.080 sec.)
Django's cache framework — Django 4.0.6 ドキュメント 5339
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... low-level cache API. You can use this API to store objects in the cache with any level of granularity you li ... ke. You can cache any Python object that can be pickled safely: strings, dictionaries, ... lists of model objects, and so forth. (Most common Python objects can be ... nfigured in the CACHES setting through a dict-like object: django.core.cache.caches . Repeated requests for ...
https://man.plustar.jp/django/topics/cache.html - [similar]
Django 1.4 documentation 5307
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 上に Reporter はひとつもありません。 >>> Reporter . objects . all () [] .. # Create a new Reporter. # 新しい ... eporter ( full_name = 'John Smith' ) .. # Save the object into the database. You have to call save() explici ... porter はデータベース上にあります。 >>> Reporter . objects . all () [ < Reporter : John Smith > ] .. # Field ... s are represented as attributes on the Python object. # 各フィールドは Python オブジェクトの属性として表 ...
https://man.plustar.jp/django/contents.html - [similar]
クラスベースビュー mixin — Django 4.0.6 ドキュメント 5307
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... インを使用する をご覧ください。 Simple mixins Single object mixins Multiple object mixins mixinを編集する Date ...
https://man.plustar.jp/django/ref/class-based-views/mixins.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 5307
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o will store date/times in UTC, use timezone-aware objects internally, and translate them to users' local ti ... .prefetch_related , a method to batch-load related objects in areas where select_related() doesn't work. Som ... UTC in the database, uses time-zone-aware datetime objects internally and translates them to the end user's ... the documentation for select_for_update() . Model.objects.bulk_create in the ORM ¶ This method lets you cre ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 5307
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... or ( 'an error' , hint = 'A hint.' , obj = checked_object , id = 'myapp.E001' , ) ) return errors The check ... tion rather than a decorator by passing a callable object (usually a function) as the first argument to regi ... m django.core.checks import Error errors = checked_object . check () expected_errors = [ Error ( 'an error' ... , hint = 'A hint.' , obj = checked_object , id = 'myapp.E001' , ) ] self . assertEqual ( err ...
https://man.plustar.jp/django/topics/checks.html - [similar]
クエリー式 — Django 4.0.6 ドキュメント 5274
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... es that have more employees than chairs. Company . objects . filter ( num_employees__gt = F ( 'num_chairs' ) ... Both the querysets below are equivalent. Company . objects . filter ( num_employees__gt = F ( 'num_chairs' ) ... * 2 ) Company . objects . filter ( num_employees__gt = F ( 'num_chairs' ) ... any to seat all employees? >>> company = Company . objects . filter ( ... num_employees__gt = F ( 'num_chair ...
https://man.plustar.jp/django/ref/models/expressions.html - [similar]
Lookup API reference — Django 4.0.6 ドキュメント 5274
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... on consists of three parts: Fields part (e.g. Book.objects.filter(author__best_friends__first_name... ); Tra ... f query parameters. The compiler is an SQLCompiler object, which has a compile() method that can be used to ... also be used directly in QuerySet filters: Book . objects . filter ( LessThan ( F ( 'word_count' ), 7500 )) ... …or annotations: Book . objects . annotate ( is_short_story = LessThan ( F ( 'wor ...
https://man.plustar.jp/django/ref/models/lookups.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 5274
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .contrib.auth.models import User >>> user = User . objects . create_user ( 'john' , 'lennon@thebeatles.com' ... , 'johnpassword' ) # At this point, user is a User object that has already been saved # to the database. You ... ngo.contrib.auth.models import User >>> u = User . objects . get ( username = 'john' ) >>> u . set_password ... サイトは、次のように権限を使用します: Access to view objects is limited to users with the "view" or "change" p ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
django.core.files.uploadedfile — Django 4.0.6 ドキュメント 5231
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... built-in concrete subclasses). An ``UploadedFile`` object behaves somewhat like a file object and represents ... cls , file_dict ): """ Create a SimpleUploadedFile object from a dictionary with keys: - filename - content- ...
https://man.plustar.jp/django/_modules/django/core/files/uploadedfile.html - [similar]
Unicode data — Django 4.0.6 ドキュメント 5231
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d bytestrings, there's a third type of string-like object you may encounter when using Django. The framework ... tual translation result isn't determined until the object is used in a string. This feature is useful in cas ... translations. Just be aware that if you examine an object and it claims to be a django.utils.functional.__pr ... oxy__ object, it is a lazy translation. Calling str() with the ...
https://man.plustar.jp/django/ref/unicode.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT