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++指针
    C++小思
    gvim-ide plugins
    Windows下文件的所有和权限
    C++枚举类型
    linux的cgroup控制
    linux的free命令
    linux下可以禁用的一些服务
    bat programming is easy and powerful
    c++类定义代码的分离
  • 原文地址:https://www.cnblogs.com/Jerryshome/p/2018778.html
Copyright © 2011-2022 走看看