1

我正在学习python和GAE。我已经能够构建一个基本的应用程序,但是我遇到了意外的重复条目。我不确定,但我认为我可以通过使用键名来处理这个问题,但我仍在学习,并且对我找到的解释键名的示例感到困惑。

我想做的是使用字符串作为“条目 id”,以便在发布条目之前,脚本确保没有具有相同条目“idstring”的条目。我已经构建了一些凌乱的代码来构建一个列表并根据列表检查条目,但我怀疑有更有效的方法来做到这一点?

这是我的代码:

import webapp2
from google.appengine.ext import db

class Options(db.Model):
  idstring = db.StringProperty()
  content = db.StringProperty(multiline=True)

class MainPage(webapp2.RequestHandler):
  def get(self):
    self.response.out.write('<html><body>')

    options = db.GqlQuery("SELECT * "
                            "FROM Options "
                            "LIMIT 10")

    for entry in options:
        self.response.out.write('%s ' % entry.idstring)
        self.response.out.write('Content: %s <br>' % entry.content)
    self.response.out.write("""
          <form action="/sign" method="post">
                <div class="field-field">
                <select name="idstring" id="id_string">
                  <option value="unique1">ID1</option>
                  <option value="unique2">ID2</option>
                  <option value="unique3">ID3</option>
                </select>
            <div><textarea name="content" rows="3" cols="60"></textarea></div>
            <div><input type="submit" value="Submit"></div>
          </form>
        </body>
      </html>""")


class Optionbook(webapp2.RequestHandler):

  def post(self):
      idlist = Options.all()
      idlist2 = []
      for i in idlist:
        idlist2.append(i.idstring)
      idstring = self.request.get('idstring')
      if idstring not in idlist2:
        entry = Options()
        entry.content = self.request.get('content')
        entry.idstring = self.request.get('idstring')
        entry.put()
      self.redirect('/')


app = webapp2.WSGIApplication([
  ('/', MainPage),
  ('/sign', Optionbook)
], debug=True)
4

1 回答 1

0

回想起来,解决方案非常简单。向数据存储添加条目时,数据存储可以使用实体 key_id 或 key_name 作为键。如果您想使用键名,只需将 key_name = yourkeystring 添加到您的放置代码中:

  import webapp2
  from google.appengine.ext import db

  class Options(db.Model):
    idstring = db.StringProperty()
    content = db.StringProperty(multiline=True)

  class MainPage(webapp2.RequestHandler):
    def get(self):
      self.response.out.write('<html><body>')

      options = db.GqlQuery("SELECT * "
                              "FROM Options "
                              "LIMIT 10")

      for entry in options:
          self.response.out.write('Content: %s <br>' % entry.content)
      self.response.out.write("""
            <form action="/sign" method="post">
                  <div class="field-field">
                  <select name="yourkeystring" id="yourkeystring">
                    <option value="ID1">ID1</option>
                    <option value="ID2">ID2</option>
                    <option value="ID3">ID3</option>
                  </select>
              <div><textarea name="content" rows="3" cols="60"></textarea></div>
              <div><input type="submit" value="Submit"></div>
            </form>
          </body>
        </html>""")


  class Optionbook(webapp2.RequestHandler):

    def post(self):
          n = Options(
            content = self.request.get('content'),
            key_name = self.request.get('yourkeystring'))
          n.put()
          self.redirect('/')


  app = webapp2.WSGIApplication([
    ('/', MainPage),
    ('/sign', Optionbook)
  ], debug=True)
于 2013-02-09T21:00:11.623 回答