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 (将#修改为@)