0

我试图通过从瓶子中返回以下内容来关闭当前的选项卡/窗口:

@route('/configure', method='POST')
def configure():

    #do other things here...

    return '''<script>window.close();</script>
      <p>You can close this window if it does not automatically close.</p>'''

但它不起作用。如何让它自动关闭?

4

1 回答 1

0

您应该将用户重定向到以该模板为模板的页面。这是 POST 处理程序的最佳实践。有关详细信息,请参阅PRG

于 2013-03-18T04:39:23.573 回答