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

时间:2016-02-14 08:37:11

标签: requirejs r.js almond

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

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

这是我的布局

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

这是我的grunt-contrib-requirejs config

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。检查控制台,您会看到它打印hello from lib

所以我跑了咕噜声。然后我运行一个使用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与主引用./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如果您愿意使用它。

1 个答案:

答案 0 :(得分:2)

所以这就是答案。

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

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