Problems are not stop signs; they are guidelines.
問題的出現(xiàn)不是讓你止步,而是給你指路。———— Robert Schuller
最近在學(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...