我正在使用下面的简单代码来使用 node.js 从数据库中检索数据。
我想要实现的是,当新数据或现有数据发生变化并被推送到网页时,我需要它们仅为那个特定的数据设置动画或更改颜色。我该怎么做?
任何帮助深表感谢。
代码:
// creating a new websocket
var socket = io.connect('http://localhost:8000');
// on message recived we print the new data inside the #container div
socket.on('notification', function (data) {
var usersList = "<div id='aaa'>";
$.each(data.users,function(index,user){
usersList += "<p>" + user.users + "</p>";
});
usersList += "</div>";
$('#container').html(usersList);
});