我在server.js中有以下代码
app.route('/push')
.get(pushApis.list_all_tasks)
.post(pushApis.send_notification);
并且包括js:
exports.send_notification = function(req, res) {
console.log("start of send_notification ");
console.log('req.method:' + req.method);
if (req.method == 'POST') {
var jsonString = '';
}
如果我必须添加另一个帖子方法,那我该怎么做?向server.js添加新方法似乎没有正确的方法,因为在调用期间我没有指定方法名称send_notification