我在我的应用中使用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。
答案 0 :(得分:0)