【发布时间】:2013-05-11 01:44:00
【问题描述】:
在 Windows Phone 上使用 PushSharp 时,我发送的通知带有指向我应用中视图的深层链接。
push.QueueNotification(new WindowsPhoneToastNotification()
.ForEndpointUri(new Uri(endpoint))
.ForOSVersion(WindowsPhoneDeviceOSVersion.Eight)
.WithBatchingInterval(BatchingInterval.Immediate)
.WithNavigatePath("/Views/DetailView.xaml")
.WithParameter("slug", slug)
.WithText1(text)
.WithText2(message));
但是当 toast 出现并且我触摸它打开应用程序时,应用程序打开到我的默认视图而不是请求的 DetailView。
这不应该对我的 DetailView 开放吗?
【问题讨论】:
标签: windows-phone-7 windows-phone-8 windows-phone-7.1 pushsharp