4

これはどのように機能しませんか?「no module: tut」エラーをスローしないために必要な最小値は何ですか?

<!DOCTYPE html>
<html ng-app="tut">
    <head>
        <script type="text/javascript" src="./jquery.js"></script>
        <script type="text/javascript" src="./script-ng.js"></script>
        <script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
          <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
        <link rel="stylesheet" href="main.css"></link>
    </head>
    <body>
        <div id="sidebar_left"><div id="header"></div><ul id="nav"></ul></div>
        <div id="container">


            <video id="video" controls>

                        Your browser does not support the video tag.</video>
            <br />
            <button id="reset">Replay</button>

        <br />
        <div ng-controller="getAnswers" id="pannel">
            <div id="base">{{verbs.base}}</div>
            <ul class="answers">
                <li ng-click="checkAnswer($event)" ng-repeat="answer in verbs.conjugations" class="answer {{answer.correct}}" id="answer{{$index}}">{{answer.text}}</li>
            </ul>
        </div>
        <br />
        <br />
        <br />
        <div id="warning"></div>
    </div>
</body>

angular.module('tut', []).controller('getAnswers', function ($scope, $element){
    $scope.verbs = conjugate(conjugationsets[tutorial_number][questionnum]);
    $scope.randomizeAnswers = function () {
      fisherYates($scope.verbs.conjugations);
    }();

    $scope.checkAnswer = function (){
        checkanswer();
    }
});
4

2 に答える 2

4

とてもシンプルです。これを忘れているかもしれません.jsファイルの上にangularjsライブラリを追加してください.

于 2013-02-24T06:45:45.320 に答える
1

ほとんどのアプリでは、必要なモジュールは 1 つだけです。この場合、Angular で作業したいコンテンツの親である HTML 要素に ng-app="app" を含める必要があります。

ほとんどの場合、それはそれを作るタグです

テスト目的でコードを分割したい場合は、複数のモジュールを作成し、次のように依存関係の配列にそれらの名前を含めることができます。

angular.module('tut', [ 'othermodule', 'andanothermodule']);

angular.module('othermodule');

etc.

Josh のコメントにあるように、スクリプトをロードする順序が間違っています。

于 2013-02-22T21:35:02.797 に答える