从瓶子里返回window.close()?

时间:2013-03-18 04:32:30

标签: javascript python bottle

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

@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>'''

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

1 个答案:

答案 0 :(得分:0)

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