我想用 node.js 推送通知,但 node.js 中的模块没有 send 方法。
问问题
147 次
1 回答
0
使用像本文档这样的通知对象:http: //docs.telerik.com/platform/backend-services/development/javascript-sdk/push-notifications/sending-push-from-client
el.data('Push/Notifications').create(notification, function(data) {
console.log(data);
}, function(e) {
console.log(e);
});
于 2015-01-12T19:51:39.573 回答