V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
aragakiiyui
V2EX  ›  问与答

一个 flask 问题

  •  
  •   aragakiiyui · Nov 17, 2015 · 1425 views
    This topic created in 3819 days ago, the information mentioned may be changed or developed.

    打算看 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 replies    2015-11-17 17:17:46 +08:00
    julyclyde
        1
    julyclyde  
       Nov 17, 2015
    Mixin 类不是让你直接生成对象的,而是让你用来多重继承的
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2481 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 05:51 · PVG 13:51 · LAX 22:51 · JFK 01:51
    ♥ Do have faith in what you're doing.