zoukankan      html  css  js  c++  java
  • pylons 1.0 AttributeError: 'ContextObj' object has no attribute "xxx"

    将代码升级至pylons1.0,原本运行良好的程序报出:
    AttributeError: 'ContextObj' object has no attribute 'tabs' 异常,经过查询资料得知是pylons1.0相比较0.97做了一些调整,pylons 1.0默认情况下tmpl_context将不再是AttribSafeContextObj,也就是说:访问不存在的属性将产生AttributeError异常,为使用attribute-safe tmpl_context,可以更改config/environment.py,增加config['pylons.strict_tmpl_context'] = False即可.
    官方说法原文为:
    By default, the tmpl_context (a.k.a ‘c’), is no longer a AttribSafeContextObj. This means accessing attributes that don’t exist will raise an AttributeError.
        To use the attribute-safe tmpl_context, add this line to the config/environment.py:
        config['pylons.strict_tmpl_context'] = False

    详情请参阅 http://pylonshq.com/docs/en/1.0/upgrading/

  • 相关阅读:
    C#控件刷新
    [转载] 尺度不变特征变换匹配算法
    C++ windows 多线程 互斥锁
    堆栈内存申请,以及32位程序内存上限
    dumpbin检查Dll
    CV_Assert
    Linux复习
    操作系统复习
    P/NP问题
    程序
  • 原文地址:https://www.cnblogs.com/Jerryshome/p/2018778.html
Copyright © 2011-2022 走看看