每日一句 ( 202525 )  

Life doesn't get easier or more forgiving; we get stronger and more resilient.

生活從未變得更加輕松或?qū)捜?,是我們?cè)谝稽c(diǎn)一點(diǎn)變強(qiáng)、變堅(jiān)韌。———— Steve Maraboli

web.py使用session時(shí)報(bào)錯(cuò)AttributeError的解決辦法

最近在學(xué)習(xí)web.py使用session時(shí),經(jīng)常會(huì)遇到AttributeError錯(cuò)誤,大體報(bào)錯(cuò)內(nèi)容是: AttributeError: ‘ThreadedDict’ object has no attribute ‘xxxxx’ 網(wǎng)上找的解決辦法都是關(guān)閉web.py的調(diào)試模式,但有時(shí)關(guān)閉后也會(huì)報(bào)錯(cuò),很是郁悶。 最后鄭曉摸索出了使用session時(shí)需要注意的幾點(diǎn),在這里記錄一下: 1. 首先請(qǐng)關(guān)閉調(diào)試模式: web.config.debug = False 代碼需加到impor...