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())