课程: https://github.com/Pearyman/moocDemos/tree/master/imooc/nodejs_base_02/2_4
2017-05-31
resolve --> resolve()
_animate() --> _animate(ball,distance)
_animate() --> _animate(ball,distance)
2017-05-31
想要获取人数的看我写的代码:https://github.com/laker1/crawler/blob/master/crawler.js
2017-05-29
buffer缓冲,在nodejs里处理二进制的数据。为什么要有buffer呢,因为js的字符串是以utf-8的编码存储的,处理二进制的能力是很弱的,而网络层对于不同资源、文件的请求、响应都是用二进制这种方式进行交互的,所以nodejs就有一个接口来创建存放二进制数据的缓存区,并提供一些方法来对缓存区的数据进行进一步的处理。Buffer在nodejs中是可以全局访问的,不需要require来加载。
2017-05-25