📜  获取 api 烧瓶 url 重定向 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:32.300000             🧑  作者: Mango

代码示例2
fetch('url',{
    method:'POST'                
    }) 
    .then((response)=>{         
        if(response.redirected){
            window.location.href = response.url;
        }
    })           
    .catch(function(e){
        
    })