AngularJS 扩展指令 ng-readingtime
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/jiin/ng-readingtime
软件介绍
ng-readingtime 是 AngularJS 的指令,可以用来获取对指定文本的阅读时间。
使用示例
<p> Reading time: <span ng-reading-time text-to-read="text"></span> </p>
.directive('myCustomDirective', ['readingTime', function(readingTime) { return { // ... skipped code
link: function() {
scope.result = readingTime.get(text, {
wordsPerMinute: 210,
format: 'text_only'
});
}
}
}]);计算机网络(第5版)
Andrew S. Tanenbaum、David J. Wetherall / 严伟、潘爱民 / 清华大学出版社 / 2012-3-1 / 89.50元
本书是国内外使用最广泛、最权威的计算机网络经典教材。全书按照网络协议模型自下而上(物理层、数据链路层、介质访问控制层、网络层、传输层和应用层)有系统地介绍了计算机网络的基本原理,并结合Internet给出了大量的协议实例。在讲述网络各层次内容的同时,还与时俱进地引入了最新的网络技术,包括无线网络、3G蜂窝网络、RFID与传感器网络、内容分发与P2P网络、流媒体传输与IP语音,以及延迟容忍网络等。另......一起来看看 《计算机网络(第5版)》 这本书的介绍吧!
