4

尽管一切看起来都不错,但我不能将航点与 RequireJS 一起使用。这是我的代码:http: //jsfiddle.net/7nGzj/

main.js

requirejs.config({
    "baseUrl": "theme/PereOlive/js/lib",
    "paths": {
      "app":"../app",
      "jquery": "//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min"
    },
    "shim": {
        "waypoints.min": ["jquery"]
    }
});
requirejs(["app/common"]);

common.js

define([
    'jquery',
    "waypoints.min",
], function () {
    $(function () {
        console.log($.waypoints);
        $('#loading').waypoint(function (direction) {
            // do stuff
        });
    });
});

我什至对它进行了调整以确保 jQuery 已正确加载,但它不起作用。我的其他库按应有的方式工作(responsiveslides、flexslider、hoverintent、smoothscroll 等)。

  • jQuery V1.10.2
  • 航点 V2.0.3
  • RequireJS V2.1.8
4

1 回答 1

7

与 AMD 兼容(和 Waypoints)的依赖项应该require通过它们注册的模块名称来实现。找出该名称的最简单(唯一?)方法是查看 lib 的源代码:

// (...)
if (typeof define === 'function' && define.amd) {
  return define('waypoints', ['jquery'], function($) {
    return factory($, root);
  });
} // (...)

是“ waypoints”!

由于该库与 AMD 兼容,因此您不需要 shim,但您需要定义它的路径(因为文件名可能与 AMD 模块名不同):

requirejs.config({
    "baseUrl": "theme/PereOlive/js/lib",
    "paths": {
      "app": "../app",
      "waypoints": "path/to/waypoints.min"
    }
});

之后,您需要更改您的require呼叫:

define([
    "jquery",
    "waypoints" // this is the AMD module name
]

修复了你的 jsfiddle:http: //jsfiddle.net/jVdSk/2/

于 2013-10-11T15:40:45.973 回答