My Node.js server has something that looks like the following:
app.get("/api/id/:w", function(req, res) {
var data = getIcon(req.params.w);
});
Here, data
is a string containing a Base64 representation of a PNG image. Is there any way I can send this to a client accessing the route encoded and displayed as an image (e.g. so the URL can be used in an img
tag)?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…