Aria模板调试模式无效

时间:2012-10-31 13:01:13

标签: javascript web-applications ariatemplates

我正在使用aria模板,我正在尝试使用调试模式,但它似乎没有用,因为我没有登录控制台。这是主要的index.html。

<script type="text/javascript" src="/aria/bootstrap.js"></script>
<link type="text/css" href="./view/style.css" rel="stylesheet"></link>
</head>
<body>

<div id="output"></div>

<script type="text/javascript">
        Aria.debug = true;

        Aria.loadTemplate({
            div : "output",
            classpath : "guides.todo_mio.view.Todo",
            moduleCtrl : {
                classpath : "guides.todo_mio.TodoCtrl"
            }
        });
    </script>

</body>
</html>

任何提示?

感谢。

1 个答案:

答案 0 :(得分:2)

在加载引导程序或Aria模板的生产版本之前,您需要启用debug模式,以便自动将每个类的日志级别设置为LEVEL_DEBUG

<script>Aria = {debug : true}</script>
<script type="text/javascript" src="/aria/bootstrap.js"></script>

另一种方法是在加载框架后重新设置日志级别

aria.core.Log.setLoggingLevel("*", aria.core.Log.LEVEL_DEBUG);

ariatemplates.com

提供了更多内容