美文网首页
AMD(Asynchronous Module Definiti

AMD(Asynchronous Module Definiti

作者: 豆豆猫1031 | 来源:发表于2017-09-13 20:29 被阅读0次

Asynchronous module definition(AMD) is a specification for the programming language JavaScript. It defines an application programming interface(API) that defines code modules and their dependencies, and loads them asynchronously if desired. Implementations of AMD provide the following benefits:

specificatiion:n. 规格;说明书;详述

implementation:n. [计] 实现;履行;安装启用

Website performance improvements. AMD implementations load smaller JavaScript files, and then only when they are needed.

Fewer page errors. AMD implementations allow developers to define dependencies that must load before a module is executed, so the module does not try to use outside code that is not available yet.

In addition to loading multiple JavaScript files at runtime, AMD implementations allow developers to encapsulate code in smaller, more logically-organized files, in a way similar to other programming languages such as Java. For production and deployment, developers can concatenate and minify JavaScript modules based on an AMD API into one file, the same as traditional JavaScript.

In addition to:本意是除...外 

encapsulate[ɪn'kæpsjə'let]:vt. 压缩

concatenate[kən'kætɪneɪt]:vt. 连结;使连锁 adj. 连结的

minify:vt. 使变小

The AMD specification is implemented by Dojo Toolkit, RequireJS, and ScriptManJS.

相关文章

网友评论

      本文标题:AMD(Asynchronous Module Definiti

      本文链接:https://www.haomeiwen.com/subject/qomlsxtx.html