requirejs – 了解r.js,杏仁和相对路径

我看到
this answer但AFAICT它不适合我.也许我做的事情很愚蠢.

我正在使用almondgrunt-contrib-requirejs.我尝试了很多东西

这是我的布局

.
├── Gruntfile.js
├── 3rdparty
│   ├── require.js
├── src
│   ├── lib.js
│   └── main.js
└── node_modules
    └── almond
        └── almond.js

这是我的grunt-contrib-requirejs配置

requirejs: {
  full: {
    options: {
      baseUrl: "./",
      name: "node_modules/almond/almond.js",
      include: [ "src/main.js" ],
      out: "dist/app.js",
      optimize: "none",
    },
  },
},

main.js看起来像这样

requirejs(['./lib',], function(lib) {
  lib.hello();
});

lib.js看起来像这样

define([], function() {
    return {
      hello: function() {
          console.log("hello from lib");
      },
    };
});

如果运行使用require.js的页面,请执行此操作

<script src="3rdparty/require.js" data-main="src/main.js"></script>

它运行得很好. You can see it live it here.检查控制台,你会看到它从lib打印hello

所以我跑了咕噜声.然后我运行一个使用dist / app.js的页面,我得到了错误

Uncaught Error: undefined missing lib

这是live page.

检查生成的dist / app.js我看到lib已经变成了这个

define('src/lib',[], function() {
   ...
});

主要是这样包括它

requirejs(['./lib'], function(lib) {
  ...
});

换句话说,r.js生成的src / lib的id与main引用./lib的id不匹配.

这似乎是r.js的一个非常直接的例子.就像几乎“你好世界”.

我究竟做错了什么?

我尝试过的一件事是将baseUrl更改为./src

requirejs: {
  full: {
    options: {
      baseUrl: "./src",
      name: "node_modules/almond/almond.js",
      include: [ "src/main.js" ],
      out: "dist/app.js",
      optimize: "none",
    },
  },
},

但现在我明白了

{ [Error: Error: ENOENT: no such file or directory, open '/Users/gregg/temp/grunt-contrib-requirejs-example/src/node_modules/almond/almond.js'
    at Error (native)
]
  originalError: 
   { [Error: ENOENT: no such file or directory, open '/Users/gregg/temp/grunt-contrib-requirejs-example/src/node_modules/almond/almond.js']
     errno: -2,
     code: 'ENOENT',
     syscall: 'open',
     path: '/Users/gregg/temp/grunt-contrib-requirejs-example/src/node_modules/almond/almond.js',
     fileName: '/Users/gregg/temp/grunt-contrib-requirejs-example/src/node_modules/almond/almond.js' } }

所以我尝试修复杏仁路径

requirejs: {
  full: {
    options: {
      baseUrl: "./src",
      name: "../node_modules/almond/almond.js",
      include: "main",
      out: "dist/app.js",
      optimize: "none",
    },
  },
},

但那也失败了

{ [Error: Error: ERROR: module path does not exist: ../node_modules/almond/almond.js for module named: ../node_modules/almond/almond.js. Path is relative to: /Users/gregg/temp/grunt-contrib-requirejs-example
    at /Users/gregg/temp/grunt-contrib-requirejs-example/node_modules/requirejs/bin/r.js:30214:35
]
  originalError: [Error: ERROR: module path does not exist: ../node_modules/almond/almond.js for module named: ../node_modules/almond/almond.js. Path is relative to: /Users/gregg/temp/grunt-contrib-requirejs-example] }

我得不到什么?

The entire thing is checked into github here如果您想使用它.

最佳答案 所以这就是答案.

r.js更喜欢模块名称而不是路径

requirejs: {
  full: {
    options: {
      baseUrl: "./src",
      paths: {
        almond: "../node_modules/almond/almond",
      }
      name: "almond",
      include: [ "main.js" ],
      out: "dist/app.js",
      optimize: "none",
    },
  },
},
点赞