只要有成功的插入操作到表中,我就会从 Azure 向我的 Win 8 应用程序发送祝酒词。这是脚本
request.execute({
success: function() {
// Write to the response and then send the notification in the background
request.respond();
push.wns.sendToastImageAndText02(item.channel, {
text1:' Blue Flame Detected !',text2 :'Please Click on the message for Instruction Set',Duration:'ToastDuration.Long',sound:'reminder',image1src:item.imageUri
}, {
success: function(pushResponse) {
console.log("Sent push:", pushResponse);
}
});
}
});
});
当用户单击它时,我希望 toast 在我的应用程序中打开一个新页面。我知道 toast 有 Activated 事件,但我如何从我的 Azure 脚本中使用它?