V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
aragakiiyui
V2EX  ›  问与答

一个 flask 问题

  •  
  •   aragakiiyui · 2015-11-17 16:03:55 +08:00 · 1161 次点击
    这是一个创建于 3241 天前的主题,其中的信息可能已经有所发展或是发生改变。

    打算看 flask 的源码,然后看到这个
    class SessionMixin(object):
    """Expands a basic dictionary with an accessors that are expected
    by Flask extensions and users for the session.
    """

    def _get_permanent(self):
        return self.get('_permanent', False)
    
    def _set_permanent(self, value):
        self['_permanent'] = bool(value)
    
    #: this reflects the ``'_permanent'`` key in the dict.
    permanent = property(_get_permanent, _set_permanent)
    del _get_permanent, _set_permanent
    

    为什么我创建了一个 SessionMixin 类之后, permanet 打印不出来,报这个错误
    AttributeError: 'SessionMixin' object has no attribute 'get'

    1 条回复    2015-11-17 17:17:46 +08:00
    julyclyde
        1
    julyclyde  
       2015-11-17 17:17:46 +08:00
    Mixin 类不是让你直接生成对象的,而是让你用来多重继承的
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1978 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 22ms · UTC 15:35 · PVG 23:35 · LAX 08:35 · JFK 11:35
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.