我开始使用 JavascriptMVC,通过快速启动 todo 示例应用程序。我在第一步遇到 403 错误。这是我的代码:
todos.html
<html>
<head></head>
<body>
<ul id='todos'></ul>
<input id='editor' />
<script type='text/javascript'
src='.../steal/steal.js?todos/todos.js'>
</script>
</body>
</html>
todos.js
steal('jquery/class',
'jquery/model',
'jquery/dom/fixture',
'jquery/view/ejs',
'jquery/controller',
'jquery/controller/route',
function($){
});
关于可能导致此错误的任何想法?我想我必须能够访问存储库,因为它是 403 错误,但我不明白为什么会有任何授权问题。