2

GAE データストアを更新すると、ブラウザーがページを更新した後にのみ、正しいデータストアの内容が表示されます。

import os

from google.appengine.ext.webapp import template
from google.appengine.ext import db
import webapp2

#def testkey():
#  return db.Key.from_path('test', 'test')

class TestEntity(db.Model):
  testkey = db.StringProperty(multiline=False)
  testvalue = db.StringProperty(multiline=False)

class TestRefreshProblem(webapp2.RequestHandler):
  def get(self):
    testquery = TestEntity.all()#.ancestor(testkey())
    entities = testquery.run()
    template_values = {
      'entities': entities,
      }
    path = os.path.join(os.path.dirname(__file__), 'index.html')
    self.response.out.write(template.render(path, template_values))

class TestRefreshProblemPost(webapp2.RequestHandler):
  def post(self):
    # testEntity = TestEntity(parent=testkey())
    testEntity = TestEntity()
    testEntity.testkey = self.request.get('testkey')
    testEntity.testvalue = self.request.get('testvalue')
    testEntity.put()
    self.redirect('/')

app = webapp2.WSGIApplication([
    ('/', TestRefreshProblem),
    ('/pst', TestRefreshProblemPost)
], debug=True)

そしてindex.htmlは次のとおりです。

<html>
  <body>
    <table border=0>
        <tr><td width=200>Key</td><td width=200>Value</td></tr>
        {% for entity in entities %}
          <tr>
            <td width=200>{{ entity.testkey|escape }}</td>
            <td width=200>{{ entity.testvalue|escape }}</td>
          </tr>
        {% endfor %}
      </table>
     <form action="/pst" method="post">
      <table>
        <td ><input type="text" name="testkey" size=30/></td>
        <td ><input type="text" name="testvalue" size=30/></td>
        <tr><td><input type="submit" value="Add entity"></td></tr>
      </table>
    </form>
  </body>
</html>

この問題は、(ダミーの) 祖先を使用することで解消されます (re: # のある行)。私には奇妙な振る舞いのように思えます...祖先なしで解決できますか?

4

1 に答える 1