मैं आवश्यकता के साथ बैकबोन और अंडरस्कोर (साथ ही jQuery) लोड करने की कोशिश कर रहा हूं। बैकबोन और अंडरस्कोर के नवीनतम संस्करणों के साथ, यह एक तरह से मुश्किल लगता है। एक के लिए, अंडरस्कोर स्वचालित रूप से खुद को एक मॉड्यूल के रूप में पंजीकृत करता है, लेकिन बैकबोन मानता है कि अंडरस्कोर विश्व स्तर पर उपलब्ध है। मुझे यह भी ध्यान देना चाहिए कि बैकबोन खुद को एक मॉड्यूल के रूप में पंजीकृत नहीं करता है, जो इसे अन्य कार्यों के साथ असंगत बनाता है। यह सबसे अच्छा main.js है जो मुझे उस काम के साथ मिल सकता है:
require(
{
paths: {
'backbone': 'libs/backbone/backbone-require',
'templates': '../templates'
}
},
[
// jQuery registers itself as a module.
'http://cdnjs.cloudflare.com/ajax/libs/jquery/1.7/jquery.min.js',
// Underscore registers itself as a module.
'http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.2.1/underscore-min.js'
], function() {
// These nested require() calls are just due to how Backbone is built. Underscore basically says if require()
// is available then it will automatically register an "underscore" module, but it won't register underscore
// as a global "_". However, Backbone expects Underscore to be a global variable. To make this work, we require
// the Underscore module after it's been defined from within Underscore and set it as a global variable for
// Backbone's sake. Hopefully Backbone will soon be able to use the Underscore module directly instead of
// assuming it's global.
require(['underscore'], function(_) {
window._ = _;
});
require([
'order!http://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.5.3/backbone-min.js',
'order!app'
], function(a, app) {
app.initialize();
})
});
मुझे इसका उल्लेख करना चाहिए, जबकि यह काम करता है, ऑप्टिमाइज़र इस पर विचार करता है। मैं निम्नलिखित प्राप्त करता हूं:
Tracing dependencies for: main
js: "/home/httpd/aahardy/requirejs/r.js", line 7619: exception from uncaught JavaScript throw: Error: Error: Error evaluating module "undefined" at location "/home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js":
JavaException: java.io.FileNotFoundException: /home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js (No such file or directory)
fileName:/home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js
lineNumber: undefined
http://requirejs.org/docs/errors.html#defineerror
In module tree:
main
क्या इससे निपटने का एक बेहतर तरीका है? धन्यवाद!