aragakiiyui
V2EX  ›  问与答

一个 flask 问题

  •  
  •   aragakiiyui · Nov 17, 2015 · 1467 views
    This topic created in 3840 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   ·   893 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 38ms · UTC 20:21 · PVG 04:21 · LAX 13:21 · JFK 16:21
    ♥ Do have faith in what you're doing.