我想在我的開發機器上使用本地主機設置cookie。以下是我的web.py代碼。但是,當我在http://0.0.0.0:8080/的te bowser中運行代碼時,我得到一個頁面,但沒有設置cookie。 FYI主機名--fqdn等於「ubuntu」。這是我第一次嘗試設置cookie。我也嘗試過ubuntu,127.0.0.1以及doman。python,web.py並在本地主機上設置cookie
class index:
def GET(self):
env = web.ctx['environ']
qs = urlparse.parse_qs(env['QUERY_STRING'])
#Set cookie
web.setcookie('test', "rtb", expires=3600, domain='localhost', secure=False)
return 'test'
PS我補充說:「0.0.0.0開發」到/ etc/hosts和使用域開發,但仍然沒有效果 – Tampa 2012-02-15 18:15:34