使用Socket.io,Express和Handlebars

时间:2017-06-01 15:21:52

标签: javascript node.js express socket.io handlebars.js

当用户向数据库添加条目时,我希望立即在用户的所有打开页面上反映它。我使用Express,MongoDB和Handlebars与Socket.io。当User1提交新条目并将其保存到MongoDB时,位于不同浏览器中的同一页面上的User2应立即在其页面上看到新条目。我已经测试了连接,并在添加新用户时进行了控制台日志记录。它适用于单个客户端窗口,但不向所有客户端广播。

在server.js中,我正在保存用户:

// CREATE USER
app.post("/", function(req, res) {
  var randomNumbers = [];
  var min = Math.ceil(req.body.min);
  var max = Math.floor(req.body.max);

  function getRandomInt(min, max) {
    for (var i = 0; i < req.body.howMany; i++) {
      randomNumbers.push(Math.floor(Math.random() * (max - min)) + min);
    }
  };

  getRandomInt(min, max);

  // Create a new note and pass the req.body to the entry
  var newEntry = new Entry({
    name: req.body.name,
    min: req.body.min,
    max: req.body.max,
    howMany: req.body.howMany,
    numbers: randomNumbers
  });

  // And save the new note the db
  newEntry.save(function(error, data) {
    // Log any errors
    if (error) {
      console.log(error);
    }
    else {
      // Or send the document to the browser
      res.send(data);
    }
  });    
});

并且还接收socket.io连接

  io.on('connection', function(socket){
    console.log('a user connected');

   socket.on('disconnect', function(){
    console.log('user disconnected');
   });

   socket.on("newuser", function(data) {
    socket.emit("added", data);
   });
});

在/public/app.js中进行AJAX调用,然后发出数据

    // When that's done
    .done(function(data) {  
      // Log the response
      console.log(data);
      socket.emit("newuser", data);
    });
});

套接字在我的main.handlebars文件中启动,并侦听添加的

<script>
    var socket = io();
    socket.on("added", function(data) {
        console.log(data);
    });
</script>

index.handlebars显示页面

  {{#each entries}}
  <div class="item">
        <span class="name"> {{this.name}} </span> <em> {{min}} : {{max}} </em>

        {{!--Maps over each number--}}
        <ul class="children">
          {{#each numbers}}
          <li> {{this}} </li>
          {{/each}}
        </ul>

       <div class="buttons">
        <button data-id={{this.id}} type="submit" class="delete button">REMOVE</button>
        <!-- Trigger/Open The Modal -->
        <button data-id={{this.id}} class="rename button">RENAME</button>

        <button data-id={{this.id}} class="updateNums button">MIN / MAX</button>
       </div>
  </div>
  {{/each}}

https://github.com/nathanchr/root-tree-app/tree/socket

1 个答案:

答案 0 :(得分:0)

流程应该是这样的:

  1. 在数据库中保存条目
  2. 使用客户端需要的数据从服务器发出套接字事件
  3. 所有客户都应该聆听该活动
  4. 在事件上,使用服务器中的数据更新DOM
  5. Handlebars(据我所知)不支持数据绑定,因此您需要使用JavaScript更新DOM。将新条目附加到现有条目列表中。这对于实时更新非常有用,每当用户刷新页面时,它们都会获得一个完全水合的模板。