“Fetch API Flask URL Redirect” Ответ

Fetch API Flask URL Redirect

fetch('url',{
    method:'POST'                
    }) 
    .then((response)=>{         
        if(response.redirected){
            window.location.href = response.url;
        }
    })           
    .catch(function(e){
        
    })
Anxious Anteater

Fetch API Flask URL Redirect

//python
flash('some message for index page')  
return redirect(url_for('index'))

//js
fetch('url',{
    method:'POST'                
    }) 
    .then((response)=>{         
        if(response.redirected){
            window.location.href = response.url;
        }
    })           
    .catch(function(e){
        
    })
Anxious Anteater

Ответы похожие на “Fetch API Flask URL Redirect”

Вопросы похожие на “Fetch API Flask URL Redirect”

Больше похожих ответов на “Fetch API Flask URL Redirect” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования