- 浏览: 25763 次
最新评论
-
tianya84:
[size=small]猜测:mvn clean instal ...
maven部署到tomcat丢失jar包 -
tianya84:
在<dependency>中加<option ...
maven部署到tomcat丢失jar包
文章列表
The module pattern is a common JavaScript coding pattern. It's generally well understood, but there are a number of advanced uses that have not gotten a lot of attention. In this article, I'll review the basics and cover some truly remarkable advanced topics, including one which I think is origina ...
这个系列的第一部分介绍了Javascript模块的基本写法,今天介绍如何规范地使用模块。
(接上文)
七、模块的规范
先想一想,为什么模块很重要?
因为有了模块,我们就可以更方便地使用别人的代码,想要什么功能,就加载什么模块。
随着网站逐渐变成"互联网应用程序",嵌入网页的Javascript代码越来越庞大,越来越复杂。
网页越来越像桌面程序,需要一个团队分工协作、进度管理、单元测试等等......开发者不得不使用软件工程的方法,管理网页 ...