我正在尝试使用strongloop设置推送通知。我不明白下面代码所属的文件。文档没有说,这对新手来说很困惑。
我知道我必须添加一个推送组件来环回restful api应用程序,我已经完成了。但是如何从我的restful api应用程序中引用push组件?哪个是'胶水'?
http://docs.strongloop.com/display/public/LB/Push+notifications
var badge = 1;
app.post('/notify/:id', function (req, res, next) {
var note = new Notification({
expirationInterval: 3600, // Expires 1 hour from now.
badge: badge++,
sound: 'ping.aiff',
alert: '\uD83D\uDCE7 \u2709 ' + 'Hello',
messageFrom: 'Ray'
});
PushModel.notifyById(req.params.id, note, function(err) {
if (err) {
// let the default error handling middleware
// report the error in an appropriate way
return next(err);
}
console.log('pushing notification to %j', req.params.id);
res.send(200, 'OK');
});
});
答案 0 :(得分:0)