未发送实时通知

时间:2017-12-13 14:22:17

标签: angular .net-core signalr aspnetboilerplate asp.net-core-signalr

我正在尝试在ASP.NET Boilerplate中显示实时通知,但它没有发送。

public override async Task<MessagesDto> Create(MessagesCreateDto input)
{
    var MessagesCore = ObjectMapper.Map<MessagesCore>(input);            
    MessagesCore.UserId = Convert.ToInt32(AbpSession.UserId);
    MessagesCore.CreationId = Convert.ToInt32(AbpSession.UserId);
    MessagesCore.FromUserId = Convert.ToInt32(AbpSession.UserId);
    MessagesCore.CreationTime = DateTime.Now;
    MessagesCore.LastModificationId = Convert.ToInt32(AbpSession.UserId);
    MessagesCore.LastModificationTime = DateTime.Now;

    _stateRepository.Insert(MessagesCore);
    CurrentUnitOfWork.SaveChanges();

    UserIdentifier identifier = new UserIdentifier(1,input.ToUserId);
    await _notificationSubscriptionManager.SubscribeAsync(new UserIdentifier(1, input.ToUserId), "NewMessage");
    await _notificationPublisher.PublishAsync("NewMessage", new SentMessageNotificationData("Test", "New Message"), userIds: new[] { identifier });

    return MapToEntityDto(MessagesCore);
}

SentMessage通知数据类:

[Serializable]
public class SentMessageNotificationData : NotificationData
{
    public string SenderUserName { get; set; }

    public string FriendshipMessage { get; set; }

    public SentMessageNotificationData(string senderUserName, string friendshipMessage)
    {
        SenderUserName = senderUserName;
        FriendshipMessage = friendshipMessage;
    }
}

数据存储在通知表中,但客户端没有显示通知消息。

app.component.ts 中的SignalR代码:

ngOnInit(): void {
  if (this.appSession.application.features['SignalR']) {
    SignalRHelper.initSignalR();
  }

  abp.event.on('abp.notifications.received', userNotification => {
    abp.notifications.showUiNotifyForUserNotification(userNotification);
    if (userNotification.notification.data.type === 'Abp.Notifications.LocalizableMessageNotificationData') {
        var localizedText = abp.localization.localize(
            userNotification.notification.data.message.name,
            userNotification.notification.data.message.sourceName
        );

        $.each(userNotification.notification.data.properties, function (key, value) {
            localizedText = localizedText.replace('{' + key + '}', value);
        });

        alert('New localized notification: ' + localizedText);
    } else if (userNotification.notification.data.type === 'Abp.Notifications.MessageNotificationData') {
        alert('New simple notification: ' + userNotification.notification.data.message);
    }
    //Desktop notification
    Push.create("AbpZeroTemplate", {
      body: userNotification.notification.data.message,
      icon: abp.appPath + 'assets/app-logo-small.png',
      timeout: 6000,
      onClick: function () {
        window.focus();
        this.close();
      }
    });
  });
}

4 个答案:

答案 0 :(得分:1)

您是否在客户端创建了一个事件来处理通知消息。您应该像这样设置ClearSessionAndCookies事件;

abp.notifications.received

您可以找到更详细的解释here.

<强> [更新]

您需要集成SignalR才能获得实时通知。在文件here

之后

答案 1 :(得分:1)

您是否在项目中添加了Hub Class? 你需要在那里添加一个方法。 SignalR主要通过Hub进行通信,并从Client通过集线器(服务器)发送实时更新,并从那里发送到目的地,即根据您的实时更新显示代码。

答案 2 :(得分:1)

  

我在netcoreapp2.0上

  • 对于.NET Core,SignalR仍然在1.0.0-alpha2-final
  • 2.x只会在2018年第一季度/第二季度保持稳定。

更新1

Abp.AspNetCore.SignalR NuGet包已经发布。

阅读SignalR AspNetCore Integration的文档。

您可以try它并为您的文件提供必要的changes或者等待它被释放。

更新2

您现在可以使用AspNetCore.SignalR预览模板download v3.4.1

答案 3 :(得分:0)

您的代码似乎是正确的。如果您在数据库中看到记录,则可能没有运行BackgroundJob来处理记录。将调试器放在后台作业上以查看它是否遍历记录。

顺便说一句,我看到你作为租户Id传递了1。因此,如果您希望从租户而非默认租户那里获得通知,那么它将永远不会被发送。

  

UserIdentifier identifier = new UserIdentifier(1,input.ToUserId);