検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 144 for type (0.052 sec.)
テストツール — Django 4.0.6 ドキュメント 6692
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... customer/details/' ) >>> response . content b'<!DOCTYPE html...' この例が示唆しているように、 Client のイン ... ュレートします。 post ( path , data = None , content_type = MULTIPART_CONTENT , follow = False , secure = Fa ... me = fred & passwd = secret If you provide content_type as application/json , the data is serialized using ... elete() requests. If you provide any other content_type (e.g. text/xml for an XML payload), the contents o ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
django.utils.functional — Django 4.0.6 ドキュメント 6657
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... = None @staticmethod def func ( instance ): raise TypeError ( "Cannot use cached_property instance withou ... self . real_func elif name != self . name : raise TypeError ( "Cannot assign the same cached_property to ... into a lazy evaluated callable. result classes or types is required -- at least one is needed so that the ... __ ( cls ): for resultclass in resultclasses : for type_ in resultclass . mro (): for method_name in type_ ...
https://man.plustar.jp/django/_modules/django/utils/functional.html - [similar]
Full text search — Django 4.0.6 ドキュメント 6467
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... class SearchQuery ( value , config = None , search_type = 'plain' ) ¶ SearchQuery translates the terms the ... matches for all of the resulting terms. If search_type is 'plain' , which is the default, the terms are t ... reated as separate keywords. If search_type is 'phrase' , the terms are treated as a single ph ... rase. If search_type is 'raw' , then you can provide a formatted search ...
https://man.plustar.jp/django/ref/contrib/postgres/search.html - [similar]
GeoDjango Forms API — Django 4.0.6 ドキュメント 6432
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... atically convert input values into that SRID. geom_type ¶ Field. geom_type ¶ You generally shouldn't have ... Django widget attributes. BaseGeometryWidget. geom_type ¶ The OpenGIS geometry type, generally set by the ... 目次 GeoDjango Forms API Field arguments srid geom_type Form field classes GeometryField PointField LineSt ...
https://man.plustar.jp/django/ref/contrib/gis/forms-api.html - [similar]
GeoJSON Serializer — Django 4.0.6 ドキュメント 6396
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... = 'point' , fields = ( 'name' ,)) Would output: { 'type' : 'FeatureCollection' , 'crs' : { 'type' : 'name' ... s' : { 'name' : 'EPSG:4326' } }, 'features' : [ { 'type' : 'Feature' , 'geometry' : { 'type' : 'Point' , ' ...
https://man.plustar.jp/django/ref/contrib/gis/serializers.html - [similar]
モデルフィールドリファレンス — Django 4.0.6 ドキュメント 6396
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メントには、Django が提供する field options と field types を含む、 Field の全ての API リファレンスが記載され ... れは特に CharField などに適しています。 Enumeration types ¶ In addition, Django provides enumeration types ... guments to use when constructing the concrete data type. Django supports adding an extra string value to t ... e of subclassing choices using a more complex data type. If a tuple is not provided, or the last item is n ...
https://man.plustar.jp/django/ref/models/fields.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 6396
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... gerField , FloatField and DecimalField use the new type attributes available in HTML5 ( type='email' , typ ... e='url' , type='number' ). Note that due to erratic support of th ... e number input type with localized numbers in current browsers, Django ... scoverRunner ) does not automatically support some types of tests that were supported by the previous runn ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
django.utils.encoding — Django 4.0.6 ドキュメント 6349
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... %r ( %s )" % ( super () . __str__ (), self . obj , type ( self . obj ), ) [ドキュメント] def smart_str ( s ... s , encoding , strings_only , errors ) _PROTECTED_TYPES = ( type ( None ), int , float , Decimal , dateti ... atetime . time , ) [ドキュメント] def is_protected_type ( obj ): """Determine if the object instance is of ... a protected type. Objects of protected types are preserved as-is wh ...
https://man.plustar.jp/django/_modules/django/utils/encoding.html - [similar]
フォームを使う — Django 4.0.6 ドキュメント 6314
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ログインフォームを見てみましょう。ユーザー名のための type="text" 、パスワードのための type="password" 、そし ... てログインボタンのための type="submit" があります。他にも Django が次の行動を決め ... 信されるべきこともブラウザーに伝えています。 <input type="submit" value="Log in"> 要素がトリガーされると、デ ... " > Your name: </ label > < input id = "your_name" type = "text" name = "your_name" value = " {{ current_n ...
https://man.plustar.jp/django/topics/forms/index.html - [similar]
GeoDjango Database API — Django 4.0.6 ドキュメント 6278
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 0 )}]}, ... ) Spatial Lookups ¶ GeoDjango's lookup types may be used with any manager method like filter() ... , exclude() , etc. However, the lookup types unique to GeoDjango are only available on spatial ... geometry and raster input on both sides and input types can be mixed freely. The general structure of geo ... Zipcode . objects . filter ( < field > __ < lookup_type >=< parameter > ) >>> qs = Zipcode . objects . exc ...
https://man.plustar.jp/django/ref/contrib/gis/db-api.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT