Passing data between pages in a redirect() function in Google App Engine

后端 未结 1 752
既然无缘
既然无缘 2020-12-20 06:05

I\'m trying to build a simple blog using GAE and I\'ve made the following code (I\'ve deleted the parts which are not related to this question) :

# LOADING T         


        
相关标签:
1条回答
  • 2020-12-20 06:53

    You could use webapp2 sessions to share data across multiple requests in a much more flexible and secure manner, without encoding it into URLs.

    See an example this Q&A: Webapp2 Sessions in Google app engine

    0 讨论(0)
提交回复
热议问题