我正在使用 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>
任何提示?
谢谢。