0
我的路線上我的流星應用:服務的NodeJS從圖像的base64
this.route("/userimg/:id", function(){
console.log("hello");
img_base64 = Meteor.users.findOne(this.params.id).userimage;
this.response.writeHead(200, {'Content-Type': 'image/png' });
},{where: 'server'});
有了這個途徑我想從我的蒙戈收集服務Userimages。 我在我的集閤中有一個base64編碼圖像並將其保存到varibale img_base64
。 我的問題是,我需要做什麼與我的base64變量作爲一個PNG響應它? 我需要somthing像this.response.end(img_base64,....)
。 感謝您的幫助!
簡單的工作,THX – ant45de