我正在使用requireJS加载脚本。它有this detail in the docs:
用于模块名称的路径不应包含.js 扩展,因为路径映射可以用于目录。
在我的应用程序中,我将所有脚本文件映射到配置路径中,因为它们是在运行时动态生成的(我的脚本像order.js
一样开始生活,但变成order.min.b25a571965d02d9c54871b7636ca1c5e.js
之类的东西(这是文件内容的哈希值,用于缓存目的)。
在某些情况下,require会在这些路径的末尾添加第二个.js扩展名。虽然我在服务器端生成动态路径然后填充配置路径,但我必须编写一些额外的javascript代码以从有问题的文件中删除.js
扩展名。
阅读requireJS文档,我真的不明白为什么你想要将路径映射用于目录。这是否意味着可以在一次调用中以某种方式加载整个目录的文件?我不明白。
有没有人知道是否可以强制要求停止将.js添加到文件路径中,这样我就不必破解它了?
感谢。
更新:根据要求添加了一些代码示例。
这是在我的HTML文件中(它是一个Scala项目,因此我们无法将这些变量直接写入.js
文件):
foo.js.modules = {
order : '@Static("javascripts/order.min.js")',
reqwest : 'http://5.foo.appspot.com/js/libs/reqwest',
bean : 'http://4.foo.appspot.com/js/libs/bean.min',
detect : 'order!http://4.foo.appspot.com/js/detect/detect.js',
images : 'order!http://4.foo.appspot.com/js/detect/images.js',
basicTemplate : '@Static("javascripts/libs/basicTemplate.min.js")',
trailExpander : '@Static("javascripts/libs/trailExpander.min.js")',
fetchDiscussion : '@Static("javascripts/libs/fetchDiscussion.min.js")'
mostPopular : '@Static("javascripts/libs/mostPopular.min.js")'
};
然后在我的main.js
:
requirejs.config({
paths: foo.js.modules
});
require([foo.js.modules.detect, foo.js.modules.images, "bean"],
function(detect, images, bean) {
// do stuff
});
在上面的例子中,我必须使用字符串“bean”(指的是require路径)而不是我的直接对象(就像其他人使用foo.js.modules.bar
),否则我得到额外的{{1}附加。
希望这是有道理的。
答案 0 :(得分:110)
如果您不想在noext上添加依赖项,您还可以在路径中附加一个虚拟查询字符串,以防止附加.js扩展名,如:
require.config({
paths: {
'signalr-hubs': '/signalr/hubs?noext'
}
});
这是noext插件的功能。
答案 1 :(得分:14)
requirejs'noext plugin:
加载脚本而不附加“.js”扩展名,对动态脚本很有用......
文档
检查
examples
文件夹。您可能需要的所有信息都将在注释内或示例代码本身上。基本用法
将插件放在
baseUrl
文件夹(通常与main.js文件相同的文件夹)中,或者为插件位置创建别名:require.config({ paths : { //create alias to plugins (not needed if plugins are on the baseUrl) async: 'lib/require/async', font: 'lib/require/font', goog: 'lib/require/goog', image: 'lib/require/image', json: 'lib/require/json', noext: 'lib/require/noext', mdown: 'lib/require/mdown', propertyParser : 'lib/require/propertyParser', markdownConverter : 'lib/Markdown.Converter' } }); //use plugins as if they were at baseUrl define([ 'image!awsum.jpg', 'json!data/foo.json', 'noext!js/bar.php', 'mdown!data/lorem_ipsum.md', 'async!http://maps.google.com/maps/api/js?sensor=false', 'goog!visualization,1,packages:[corechart,geochart]', 'goog!search,1', 'font!google,families:[Tangerine,Cantarell]' ], function(awsum, foo, bar, loremIpsum){ //all dependencies are loaded (including gmaps and other google apis) } );
答案 2 :(得分:0)
我在node.js上使用requirejs服务器端。 noext插件对我不起作用。我怀疑这是因为它试图将?noext添加到网址,我们有文件名而不是网址服务器。
我需要命名我的文件.njs或.model以将它们与静态.js文件分开。希望作者更新requirejs,不要强制用户使用自动.js文件扩展名约定。
同时这是一个禁用此行为的快速补丁。
要应用此修补程序(针对node_modules / requirejs / bin / r.js的2.1.15版):
现在我们可以做require([“test / index.njs”,...] ......然后重新开始工作。
在disableAutoExt.diff中保存此补丁:
--- mod/node_modules/requirejs/bin/r.js 2014-09-07 20:54:07.000000000 -0400
+++ node_modules/requirejs/bin/r.js 2014-12-11 09:33:21.000000000 -0500
@@ -1884,6 +1884,10 @@
//Delegates to req.load. Broken out as a separate function to
//allow overriding in the optimizer.
load: function (id, url) {
+ if (config.disableAutoExt && url.match(/\..*\.js$/)) {
+ url = url.replace(/\.js$/, '');
+ }
+
req.load(context, id, url);
},
补丁只是在第1887行附近添加以下内容到node_modules / requirejs / bin / r.js:
if (config.disableAutoExt && url.match(/\..*\.js$/)) {
url = url.replace(/\.js$/, '');
}
更新:通过在代码中更深地移动网址来改进修补程序,以便在模块上调用undef后不再导致挂起。需要undef因为:
要在使用node.js进行开发时禁用模块的缓存,请将其添加到主应用程序文件中:
requirejs.onResourceLoad = function(context, map)
{
requirejs.undef(map.name);
};