微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

res.redirect 附加到当前 url 没有打开那个 url

如何解决res.redirect 附加到当前 url 没有打开那个 url

所以我的代码如下

router.get('/:id',async function (req,res){
    try {
        const id = req.params.id;
        const student = await firestore.collection('urls').doc(id);
        const data = await student.get();
        var updatedviews = data.data().views +1;
        var updatedloc = data.data().location;
        fetch(ip)
            .then(async function(response) {
            response.json().then(async jsonData => {
                updatedloc += jsonData.region_code;
                await student.update({
                    views: updatedviews,location: updatedloc
                     })
                     
            });
            })
            .catch(function(error) { });
        
            if(!data.exists) {
                res.status(404).send('Url with the given ID not found');
            }else {
                return res.redirect(data.data().longurl);
        
            }
       
    } catch (error) {
        res.status(400).send(error.message);
    }

});

但它所做的是将我从数据库获取的长网址附加到当前网址,如 localhost:5000/{longurl}

我想要的是它应该只在浏览器窗口中打开 {longurl}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。