Flask how to redirect to new page after ajax call

This question already has an answer here:

  • How to manage a redirect request after a jQuery Ajax call 30 answers

  • 正如我在烧瓶应用程序中看到的那样,您尝试输出数据并重定向到主页,但应用程序将执行输出部分,这是消息并且不会继续重定向,如果您需要重定向,则应该执行它在阿贾克斯调用。

    success: function(){
        window.location.href = "somepage";
    }
    
    链接地址: http://www.djcxy.com/p/12466.html

    上一篇: Flask重定向(urlfor())不会重新加载页面

    下一篇: Flask如何在ajax调用后重定向到新页面