freeCodeCamp/guide/chinese/miscellaneous/angular-socketio/index.md

10 lines
1022 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: Angular Socketio
localeTitle: Angular Socketio
---
如果您已经进入股票图表后端项目您可能已经注意到奖金标准是让您的股票列表在客户端实时更新。这可以通过SocketIO实现但并非所有SocketIO都能做到。记得早些时候我提到当使用_$ http.post时_你必须用您发布的项目的数据库版本更新本地数组 SocketIO使用户的浏览器环境实时与您的数据库保持同步。这有两个实际的结果
1. 您不再需要使用数据库数据手动更新本地数据;它全部自动管理
2. 您可以同时将数据库更改实时推送到不同计算机上的用户
更好的是如果你在yeoman angular-fullstack设置期间提示时只包括SocketIO那么绝对不需要包含它。它开箱即用在**主/**路线上有一个工作演示,你可以通过简单地看看它们如何在**main.controller.js中**包含它来学习如何自己使用它(所以我不会再进一步​​了解它详情)。