iOS 使用 node-apn 给通知一个标题
Posted
技术标签:
【中文标题】iOS 使用 node-apn 给通知一个标题【英文标题】:iOS give notification a title using node-apn 【发布时间】:2018-06-14 19:43:22 【问题描述】:有没有办法使用 node-apn 设置粗体通知标题(就像大多数应用程序一样)?我尝试了以下设置器:
notification.body = "Body";
notification.title = "Title";
notification.alert = "Alert";
但只有警报包含在通知中,并且是常规文本,看起来有点奇怪。
【问题讨论】:
【参考方案1】:您可以像这样在警报对象中设置标题
alert:
title: 'heres the title',
body: 'heres a body'
【讨论】:
以上是关于iOS 使用 node-apn 给通知一个标题的主要内容,如果未能解决你的问题,请参考以下文章
使用 Socket.io 的通知 - 如何发送给特定的用户/收件人?