我正在使用socket.io开发一个应用程序。我想要的是发送一个功能$ alert的警报。问题在于,当我通过
发送nofification时 socket.on('new notification', function(data){
$alert({
title: 'All good!',content:'New notification', container:'#alerts-container',
placement: 'top', duration:3, type: 'success', show: true});
socket.emit('notification',$scope.currentUser._id, function(data){
} )
})
我得到错误:未捕获的TypeError:$ alert不是来自socket.emit和许多其他人的函数。是否有通过socket.io显示警报的解决方案?
非常感谢