gpt4 book ai didi

javascript - RequireJS - 我应该为 BaseUrl 设置什么?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:14:32 25 4
gpt4 key购买 nike

鉴于我的项目结构,我无法理解如何为 requirejs 设置基本 URL。

问题:并非所有 html 文件都位于同一文件夹级别。脚本文件路径根据 html 页面的位置不断变化。

我尝试过的:我搜索了 API ,但我只是不明白 BaseURL 应该是什么才能获得所有页面的正确路径。我已经测试了变体(../js/lib、/js/lib/,我尝试不将其全部包含在 main.js 文件中)但是下面的这个是唯一一个似乎在 某些文件。

Main.js

requirejs.config({
baseUrl: '../js/lib',
paths: {
'jquery' : (document.addEventListener) ? ['vendor/jquery'] : ['vendor/jquery-1.9.1']
},
shim: {
'foundation/foundation': {
deps: ['jquery']
},
'foundation/foundation.alert': {
deps: ['jquery', 'foundation/foundation']
},
'vendor/slick.min': {
deps: [
'jquery',
'foundation',
'foundation/foundation.interchange'
],
exports: 'slick'
}
}
});
requirejs(['jquery'
, 'foundation/foundation'
]);

文件夹结构

Main Folder

│ Some Folder
│ ├── css
│ ├── js
│ │ ├── lib
│ │ │ ├── foundation
│ │ │ │ ├── foundation.alert.js
│ │ │ │ ├── ...(foundation component js files)
│ │ │ │ ├── foundation.js
│ │ │ ├── vendor
│ │ │ │ ├── jquery-1.9.1.js
│ │ │ │ ├── jquery.js
│ │ │ ├── foundation.min.js
│ │ │ ├── slick.min.js
│ │ │ └── slickModule.js
│ │ ├── main.js
│ │ └── require.js
│ ├── html
│ │ ├── components
│ │ │ ├── slider.html [All scripts throw 404: Main Folder/Some Folder/html/js/lib/vendor/file.js ]
│ │ ├── home.html [loads files as expected]
│ │ ├── second.html [loads files as expected]
│ │ ├── subfolder
│ │ │ └── random.html
│ ├── extra folder
│ │ └── index.html [All scripts throw 404: Main Folder/Some Folder/extra folder/js/lib/vendor/file.js ]
│ │
│ Another Folder
│ ├── index.html [All scripts throw 404]

/html/components/slider.html

当我尝试以这种方式调用 require 时,slickModule 的 url 是“Main Folder/Some Folder/html/js/lib/slickModule.js”——注意在基本 url 之后添加了“html”

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script data-main="../../js/main" src="../../js/require.js"></script>
<script>
require(['../js/main'], function () {
require(['slickModule']);
});
</script>
</head>
<body>
...
</body>
</html>

有人可以帮我看看为什么会这样吗?

如果可能的话,我该怎么做才能使基本 URL 保持一致?

最佳答案

总结

  1. 不要连续两次要求同一个文件,特别是如果它是更改配置选项的文件,特别是如果它使用相对路径。
  2. 使用单个应用程序入口点。如果您不能在一个地方启动您的应用程序,将很难(尽管并非不可能)使用 data-main 属性。
  3. 在包含模块或设置配置时,使用paths 配置选项指向文件,而不是相对路径。

单一入口点

首先,您的 data-main 属性可能会遇到一些问题,因为它的 behavior when used for multiple entry points is undocumented .正如它所说:

If you want to to do require() calls in the HTML page, then it is best to not use data-main. data-main is only intended for use when the page just has one main entry point, the data-main script. For pages that want to do inline require() calls, it is best to nest those inside a require() call for the configuration

多个要求

其次,您正在使用 data-main 属性加载定义库行为的配置(换句话说,require/ requirejs 函数是定制的),但是你使用那个定制的工具再次加载配置:

<script data-main="../../js/main" src="../../js/require.js"></script>
<script>
require(['../js/main'], function () {
require(['slickModule']);
});
</script>

我几乎肯定这会引入一些奇怪的行为。

使用路径来避免../

第三,您的 baseUrl 会自动设置为加载它的 HTML 的位置, 的位置数据主 脚本。您可以通过创建单个入口点(可能是 js/main)然后定义 paths configuration option 来利用它。隐藏嵌套模块。

换句话说,您的应用程序永远不需要请求 ../(或其任何变体),因为任何嵌套的内容都应该被路径条目隐藏,例如:

"paths": {
"slickModule": "lib/slickModule"
}

我知道这个答案并没有专门解决您的问题,但我确信其中一个问题(在更正后)将解决您的 404 问题。

关于javascript - RequireJS - 我应该为 BaseUrl 设置什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27869873/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com