我在我的应用程序中使用 Azure 移动服务通知。如果我的应用程序已经启动,我必须(通过通知)获取新产品的 id 并进行一些处理。
我遵循了本教程:http: //msdn.microsoft.com/en-us/library/windows/apps/jj709907.aspx
问题是:如何通过访问 notificationContent 来获取这个新产品的 id?
我尝试了一些事情:
Azure 方面,在 JS 上:
push.wns.sendToastText04(channel.currentkey, {
text1: "New product added : " + item.name,
param1: item.id});
或者
push.wns.sendToastText04(channel.currentkey, {
text1: "New product added : " + item.name,
param: item.id});
或者
push.wns.sendToastText04(channel.currentkey, {
text1: "New product added : " + item.name,
launch: item.id});
但无法在 notificationContent 中获取 id。