Google App Engine NDB跨域

时间:2012-10-28 14:57:54

标签: google-app-engine

是否可以让2个不同的域共享同一个NDB?

示例:

http://mydomain1.appspot.com

r = MyData("myid"="say","words"="hello world!")
r.put()

在其他网站中,http://mydomain2.appspot.com

q = MyData.query(MyData.myid == "say")
r = q.get()
self.response.out.write(r.words)
>>> output: hello world!

有可能吗?有一个例子吗?

1 个答案:

答案 0 :(得分:3)

两个应用程序(GAE appid)无法共享同一个数据存储区。

但是像www.example1.com和www.example2.com这样的两个域可以指向同一个应用程序。您可以使用通配符子域: http://googleappengine.blogspot.nl/2009/08/new-features-in-124.html