📅  最后修改于: 2022-03-11 15:04:15.788000             🧑  作者: Mango
app.get('/redirect', function(req, res) {
var string = encodeURIComponent('something that would break');
res.redirect('/your/redirection/url/?data=' + string);
});