1

我正在尝试使用表单收集一组数据,但我不知道如何使用 POST 从表单中获取数据。提前致谢。该程序:

主文件

    from google.appengine.ext import db
    import webapp2
    import common

    class Company(db.Model):
        name: db.StringProperty()
        image: db.BlobProperty()
        url: db.URLProperty()

    class MainPage(webapp2.RequestHandler):
        def get(self):
            common.render(self, 'main.html', {'range': range(10)})

        def post(self):
            # How to do the following?
            for i in range(10):
                company = Company()
                company.name = self.request.get("name")
                company.image = self.request.get("image")
                company.url = self.request.get("url")
                company.put()            

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

main.html

    <form action="/"  method="post" enctype="multipart/form-data">
    <table>
    <tr><th></th><th>Company</th><th>Image</th><th>URL</th></tr>
    {% for i in range %}
      <tr>
        <td>{{ forloop.counter }}: </td>
        <td><input type="text" name="name" id="name" /></td>
        <td><input type="file" name="image" id="image" /></td>
        <td><input type="text" name="url" id="url" /></td>
      </tr>
    {% endfor %}
    </table>
    <input type="submit">
    </form>

- 唐

4

1 回答 1

1

.getall(key)应该为你做。

# All values for a key: ['a', 'b']
check_values = request.POST.getall('check')

Webapp2 请求数据

于 2012-11-11T12:56:09.373 回答