当前位置: 首页>>代码示例>>Python>>正文


Python Field.__init__方法代码示例

本文整理汇总了Python中fields.Field.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python Field.__init__方法的具体用法?Python Field.__init__怎么用?Python Field.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在fields.Field的用法示例。


在下文中一共展示了Field.__init__方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from fields import Field [as 别名]
# 或者: from fields.Field import __init__ [as 别名]
    def __init__(
        self,
        queryset,
        empty_label=u"---------",
        cache_choices=False,
        required=True,
        widget=None,
        label=None,
        initial=None,
        help_text=None,
        to_field_name=None,
        *args,
        **kwargs
    ):
        if required and (initial is not None):
            self.empty_label = None
        else:
            self.empty_label = empty_label
        self.cache_choices = cache_choices

        # Call Field instead of ChoiceField __init__() because we don't need
        # ChoiceField.__init__().
        Field.__init__(self, required, widget, label, initial, help_text, *args, **kwargs)
        self.queryset = queryset
        self.choice_cache = None
        self.to_field_name = to_field_name
开发者ID:Ryati,项目名称:django,代码行数:28,代码来源:models.py

示例2: __init__

# 需要导入模块: from fields import Field [as 别名]
# 或者: from fields.Field import __init__ [as 别名]
 def __init__(self):
     Field.__init__(self)
     scriptList.register(self)
     from kivy.app import App
     def inner(*args):
         self.stack = App.get_running_app().root.ids['deck'].ids['stack']
     from kivy.clock import Clock
     Clock.schedule_once(inner,1)
开发者ID:opqopq,项目名称:BoardGameMaker,代码行数:10,代码来源:scripts.py

示例3: __init__

# 需要导入模块: from fields import Field [as 别名]
# 或者: from fields.Field import __init__ [as 别名]
 def __init__(self, queryset, empty_label=u"---------", cache_choices=False,
         required=True, widget=Select, label=None, initial=None, help_text=None):
     self.queryset = queryset
     self.empty_label = empty_label
     self.cache_choices = cache_choices
     # Call Field instead of ChoiceField __init__() because we don't need
     # ChoiceField.__init__().
     Field.__init__(self, required, widget, label, initial, help_text)
     self.widget.choices = self.choices
开发者ID:0xmilk,项目名称:appscale,代码行数:11,代码来源:models.py


注:本文中的fields.Field.__init__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。