Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 python appengine 中,我需要确定 post 方法接收到的输入框的数量。这将是 get 方法已知的变量数,但我不知道如何将该数字传递给 post 方法。所有将具有代码生成的名称'ans'+str(k),其中k是一个整数。我通过调用得到第一个:
'ans'+str(k)
k
self.request.get('ans0')
那么,我怎样才能确定我的这些家伙的数量def post(self):呢?
def post(self):
尝试这个
len(self.request.arguments())