2

我正在使用 Azure 移动服务调度程序服务定期访问另一个 api 并发送带有更新信息的实时磁贴推送通知。但是,有时无法从外部 api 获得一条数据,我需要清除其中一个磁贴属性。问题是,当我推出新通知时,我似乎无法从磁贴中清除值。我试过发送 null、空字符串和未定义。但我做什么都不会清除它。这是我的调度程序代码:

push.mpns.sendFlipTile(channel.uri, 
{
    title: 'My Title',
    backgroundImage: getTileUrl('front', 'medium', word),
    backBackgroundImage: getTileUrl('back', 'medium', word),
    wideBackgroundImage: getTileUrl('front', 'wide', word),
    wideBackBackgroundImage: getTileUrl('back', 'wide', word),

    backTitle: null,        // Doesn't clear value
    //backTitle: '',        // Doesn't clear value
    //backTitle: undefined, // Doesn't clear value

    count: '0'              // Sending 0 as a string will clear the counter
}, 
{
    success: function(pushResponse) {
        console.log("Sent push:", pushResponse);
    },
    error: function(errorResponse) {
        console.error("Error push:", errorResponse);
    }
});

谁能帮我?

4

2 回答 2

3

感谢您提出这个问题。目前我们不支持清除值的功能。此错误正在跟踪该功能的添加。请通过在我们的 UserVoice 页面上输入条目来帮助我们优先解决此问题!

于 2013-02-07T02:03:34.583 回答
1

根据此文档: http: //msdn.microsoft.com/en-us/library/windowsphone/develop/jj206971 (v=vs.105).aspx

您需要将该 backTitle 的 Action 属性设置为 Clear。不知道如何在 Windows Azure 移动服务 MPNS 上做到这一点。

于 2013-02-06T21:04:42.513 回答