我有一份表格,供我的一名处理者参考。 我的手稿核实了信息,然后需要将这些信息传递给第三方,并将用户转至该页。
例
class ExampleHandler(BaseRequestHandler):
"""DocString here...
"""
def post(self):
day = int(self.request.get( day ))
checked_day = CheckDay(day)
if checked_day:
#Here is where I would like to redirect the user to the 3rd party -- but via a post as I will be submitting a form based on data in checked_day on their behalf.
else:
# Otherwise no post redirect is needed -- just a simple self.redirect.
self.redirect( /example )
你们是否对我如何将用户转至我提交表格的网页有什么建议?
理想的情况是,我喜欢自我。 转而()允许PPOST进入3个政党地点,但我不认为这是一个选择。
我的目标是核对所提供的数据,然后向第三党发送这些数据。 我没有其他选择?