我正在尝试使用表单收集一组数据,但我不知道如何使用POST从表单中获取数据。提前致谢。该计划:
main.py
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>
- 唐
答案 0 :(得分:1)
.getall(key)
应该为你做。
# All values for a key: ['a', 'b']
check_values = request.POST.getall('check')