JS Library, how to support AMD

Source: Internet
Author: User

For the general environment, we can directly assign the return value of the backend of the module function to a variable on the window.

For the AMD environment, we have just said that we need to use define to define the function. So we can deal with both of these situations:

;(function (Factory) {2     if (typeof define = = = "function" && define.amd) {3  4         //AMD. Register as an anonymous module. 5         define (factory); 6     } else {7  8         //Browser Globals 9//         take my library for example  return MTOOLS10         window.mtools = Factory ();     }12}) (function () {     Our JS library        returns {//module return value        17 18});

JS Library, how to support AMD

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.