3

我想写一个通用的 JavaScript 模块,它可以被 node.js 和 RequireJS 加载,所以我会写这样的东西:

(function() {
  if (typeof exports !== 'undefined') {
    // node.js 
    module.exports = ...;
  } else if (typeof define === 'function' && define.amd) {
    // AMD
    define([...], function(...) {
      return ...;
    });
  }
})();

RequireJS 优化器在这种情况下还能工作吗?

4

1 回答 1

0

上次,当我尝试让它工作时 - requirejs 没有看到依赖文件。

所以我使用了“include”配置参数。

于 2013-08-29T16:57:58.233 回答