“Redirecionar URL do Fett API Flask” Respostas de código

Redirecionar URL do Fett API Flask

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

Redirecionar URL do Fett API Flask

//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

Respostas semelhantes a “Redirecionar URL do Fett API Flask”

Perguntas semelhantes a “Redirecionar URL do Fett API Flask”

Mais respostas relacionadas para “Redirecionar URL do Fett API Flask” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código