requirejs超时错误

时间:2013-04-16 06:07:22

标签: timeout requirejs node-webkit

我正在使用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加载我的sripts没有错误,但如果我尝试通过requirejs加载它们,我有一个错误“未捕获的错误:模块加载超时:files / CatalogSmall”180秒后。不知道如何解决它。

1 个答案:

答案 0 :(得分:1)

var appDir = "/home/user/p1";

你无论如何都没有文件的本地访问权限,这一行有什么意义? appDir选项适用于index.js下的子文件夹中的所有代码。在这种情况下,您不需要它。

files: "files_",

这也没有意义。 paths对象仅包含模块路径,而不包含文件夹路径。

选项为documented here