Error Uncaught ReferencEerror Angle Is Not Defined

1

My code

<!DOCTYPE html>
<html ng-app="myapp">

<head>
    <title>Testee</title>
    <!-- Bootstrap CSS -->
    <link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/css/bootstrap.min.css" rel="stylesheet">
</head>

<body class="container">
  <p><i>teste</i></p>

  <div class="navbar">
    <div class="navbar-inner">
      <a class="brand" href="#">teste</a>
      <ul class="nav">
        <li><a ui-sref="route1">lugar 1</a></li>
        <li><a ui-sref="route2">lugar 2</a></li>
      </ul>
    </div>
  </div>

  <div class="row">
    <div class="span12">
      <div class="well" ui-view></div>        
    </div>
  </div>         

  <!-- Angular -->
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.4/angular.js"></script>
  <!-- UI-Router -->
  <script src="//angular-ui.github.io/ui-router/release/angular-ui-router.js"></script>

  <!-- App Script -->
  <script>
    var myapp = angular.module('myapp', ["ui.router"])
    myapp.config(function($stateProvider, $urlRouterProvider){

      // For any unmatched url, send to /route1
      $urlRouterProvider.otherwise("/route1")

      $stateProvider
        .state('route1', {
            url: "/route1",
            templateUrl: "route1.html"
        })
          .state('route1.list', {
              url: "/list",
              templateUrl: "route1.list.html",
              controller: function($scope){
                $scope.items = ["A", "List", "Of", "Items"];
              }
          })

        .state('route2', {
            url: "/route2",
            templateUrl: "route2.html"
        })
          .state('route2.list', {
              url: "/list",
              templateUrl: "route2.list.html",
              controller: function($scope){
                $scope.things = ["A", "Set", "Of", "Things"];
              }
          })
    })
  </script>

</body>

</html>
    
asked by anonymous 06.08.2014 / 04:14

1 answer

1

I think your problem is asynchronous.

You need to load the Angular library within <head> because only then it loads before the page loads and the rest javascript is run.

What is happening now is the code to detect a remote file and load the asynchronously , ie continue running the script on the page until you receive the request / script back. Now as the script on the page needs the library this gives:

  

Uncaught ReferencEerror Angle Is Not Defined

Use this:

<head>
    <title>Testee</title>

    <!-- Bootstrap CSS -->
    <link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.1/css/bootstrap.min.css" rel="stylesheet">

    <!-- Angular -->
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.4/angular.js">    </script>

    <!-- UI-Router -->
    <script src="//angular-ui.github.io/ui-router/release/angular-ui-router.js"></script>
</head>
    
06.08.2014 / 10:53