通过JavascriptMVC'快速启动'教程获得403错误

时间:2013-06-13 23:12:03

标签: javascriptmvc stealjs

我开始使用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错误,但我不明白为什么应该有任何授权问题。

1 个答案:

答案 0 :(得分:1)

只要这是您的'root / todos /'目录,请使用:

<!DOCTYPE html>
<html>
<head></head>
<body>
  <ul id='todos'></ul>
  <input id='editor'/>
  <script src='../steal/steal.js?todos/todos.js'></script>
</body>
</html>

我认为你里面有一个额外的点:

  <script src='.../steal/steal.js?todos/todos.js'></script>