9. API(app.js) â express ã§ãã£ã¹ããã 1 app.get( // ããããã¼ã¸ 2 '/', routes.index.index); 3 app.get( // ããã«ä¸è¦§ 4 '/api/panels.json', routes.api.panels); 5 app.post( // ããã«ç»åã¢ãããã¼ã 6 '/api/upload.json', routes.api.upload); 9 10. routes/api.js // ç»åä¸è¦§ exports.panels = function(req, res) { var from = req.query.from; panelManager.retrievePanels(from, function( panels ) { res.json(200, panels); }); redisãã }; ç»
{{#tags}}- {{label}}
{{/tags}}