我想知道是否有可能/允許在兩個應用程序之間共享實體,例如一個應用程序創建並存儲實體,然後第二個應用程序從第一個應用程序獲取密鑰,然後可以訪問實體? Second.py是否需要在其中包含Ent類信息,還是僅通過擁有該對象知道關於Ent的所有信息?在應用程序之間共享實體密鑰
First.py:
class Ent(db.model):
def stuff():
print "I belong to first"
class out(webapp2.RequestHandler):
def get():
e = Ent()
key = e.put()
return key
Second.py:
class in(webapp2.RequestHandler):
response = urllib2.urlopen(urlOfFirstApp)
ent = #access BigTable with response/key, I'm not sure how to do this or if I can or if I'm allowed to
ent.stuff()
'first.py'中存在一個錯誤。 'e.put'後忘了括號;) – Linuxios
謝謝修復它。我會誠實地說這應該是psudo代碼有點失控。 – EasilyBaffled