4
雖然一切看起來不錯,我不能RequireJS使用的航點。 這裏是我的代碼:http://jsfiddle.net/7nGzj/RequireJS +路標:對象的翻譯:有沒有方法「航點」
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
});
});
});
我甚至shimed它是確保jQuery是正確加載,但它不」工作。 我的其他圖書館的工作應該像他們(responsiveslides,flexslider,hoverintent,smoothscroll,..)。
- jQuery的v1.10.2的
- 路標V2.0.3
- RequireJS V2.1.8
非常感謝!我一直在尋找幾個小時才能完成工作。 – user2160458
謝謝!你從哪裏學到的? – Tim