示例#1
0
exports.get = function(req, res) {
	Album.find({}, function(err, albums) {
		res.send(JSON.stringify(albums));
	});
};