我正在使用js/html/node-webkit构建独立的应用程序,并且在加载js文件时遇到问题。文件树:
/
|-files/
| |-additionals/
| | |-jquery.form.js
| |-bootstrap/
| | |-js/
| | | |-boostrap.min.js
| |-CatalogSmall.js
| |-jquery.js
| |-main.js
| |-parse2.js
|-index.html
|-index.js
|-require.js
我的index.html
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" data-main="index.js" src="require.js"></script>
</head>
<body>
</body>
</html>
我的index.js
var appDir = "/home/user/p1";
requirejs.config(
{
baseUrl: appDir,
paths:
{
files: "files_",
bootstrap: "files_/bootstrap/js",
additionals: "files_/additionals",
jui: "jui"
}
});
requirejs(
[ "files_/jquery" ],
function ()
{
requirejs(
[
"jui/jquery-ui-1.9.1.custom.min",
"additionals/jquery.form",
"bootstrap/bootstrap.min",
],
function ()
{
//some code
requirejs.config({ waitSeconds: 180 });
requirejs(
["files/CatalogSmall"],
function ()
{
requirejs(
["files/parse2"],
function ()
{
//some code
}
);
}
);
CatalogSmall是json风格中的一个巨大文件
因此,如果我直接从index.html加载srpt,没有错误,但如果我试图通过requirejs加载它们,180秒后我会出现错误"Uncaught error:load timeout for modules:files/CatalogSmall"。不知道如何修复。
var appDir = "/home/user/p1";
无论如何,您没有对文件的本地访问权限,这一行的意义何在?appDir选项适用于所有代码都在index.js下的子文件夹中的情况。在这种情况下,你不需要它。
files: "files_",
这也毫无意义。paths对象只包含模块路径,不包含文件夹路径。
此处记录了这些选项。