azure移动服务添加参数toast winRT

时间:2013-06-25 15:05:51

标签: mobile azure service push

我在我的应用中使用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。