0

此功能在交互式控制台上运行良好:

from google.appengine.api import namespace_manager
from google.appengine.ext import db

namespace_manager.set_namespace("some_namespace")

class Class(db.Model):
    c = db.StringProperty()

x = Class(c="text")
x.put()

但是当登录执行时,namespace_manager.set_namespace(user.namespace)所有检索并存储在数据存储中的数据都属于根(空)命名空间。

这提出了问题

  1. 我是否设置了错误的命名空间?
  2. 我是否必须在每次检索和存储数据之前设置它(在留言簿示例中不是这种情况)
  3. 如果在服务器端设置了 namespece,它如何知道哪个 post/get() 属于哪个命名空间?

请不要将我指向此链接:https ://developers.google.com/appengine/docs/python/multitenancy/multitenancy文档非常...

编辑 这回答了这个问题

“set_namespace(namespace) 设置当前 HTTP 请求的命名空间。”

我想“为什么留言簿示例不同”的答案在appengine_config.py.

现在唯一的问题是 - 登录用户时,他必须能够读取根命名空间,所以显然我必须将用户数据存储在根命名空间中,但是一旦他登录并且他的命名空间设置为特定的东西,我的 cookie 检查功能无法访问根命名空间并导致错误。

我该如何解决?(感觉像是在自言自语)

4

1 回答 1

1

您将需要在处理程序函数中设置命名空间,因为如果您在导入下设置命名空间,例如,该部分代码将被缓存并且不会为每个请求重新执行。如果您将其设置在代码的非动态部分中,则相同。

所以我认为发生的是第一次加载代码时没有用户并且命名空间不会改变。当然它可以在交互式控制台中工作,因为整个代码部分都会被执行。

# this will be the namespace of the user when the code loads or nothing
# and it will never change as long as the instance is up
namespace_manager.set_namespace(user.namespace)  

class YourHandler(webapp2.RequestHandler):
    def get(self):
       # get the user....
       namespace_manager.set_namespace(user.namespace)
       # setting the namespace here will change it for each request.
于 2013-04-08T21:54:08.743 回答