This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* movies.json | |
**/ | |
[ | |
{ | |
"title": "Avatar", | |
"year": 2009, | |
"director": "James Cameron", | |
"actors": ["Sam Worthington", "Sigourney Weaver"] | |
}, | |
{ | |
"title": "Aliens", | |
"year": 1986, | |
"director": "James Cameron", | |
"actors": ["Michael Biehn", "Sigourney Weaver"] | |
}, | |
{ | |
"title": "The Terminator", | |
"year": 1984, | |
"director": "James Cameron", | |
"actors": ["Michael Biehn", "Arnold Schwarzenegger", "Linda Hamilton"] | |
}, | |
{ | |
"title": "Indiana Jones and the Temple of Doom", | |
"year": 1984, | |
"director": "Steven Spielberg", | |
"actors": ["Harrison Ford", "Kate Capshaw"] | |
} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html ng-app="moviesApp"> | |
<!-- This demo only works in you serve the files from tomcat or any other webserver --> | |
<head> | |
<title>AngularJS demo</title> | |
<link rel="stylesheet" href="styles/movies.css" type="text/css"/> | |
<script data-main="scripts/movies" src="scripts/require.js"></script> | |
</head> | |
<body ng-controller="moviesController"> | |
<h1>This page is dynamically constructed using AngularJS</h1> | |
<p>Total number of movies is {{movies.length}}</p> | |
<div>Search: <input ng-model="query"></div> | |
<div>Sort by: | |
<select ng-model="orderProp"> | |
<option value="director">director</option> | |
<option value="title">title</option> | |
<option value="year">year</option> | |
</select> | |
</div> | |
<table> | |
<thead> | |
<tr> | |
<th>Title</th> | |
<th>Year</th> | |
<th>Director</th> | |
<th>Actors</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr ng-repeat="movie in movies | filter:query | orderBy:orderProp"> | |
<td>{{movie.title}}</td> | |
<td>{{movie.year}}</td> | |
<td>{{movie.director}}</td> | |
<td>{{movie.actors.join(",")}}</td> | |
</tr> | |
<tbody> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* movies.css */ | |
table { | |
border-collapse:collapse; | |
} | |
th { | |
text-align: left; | |
padding:3px; | |
border: 1px solid red; | |
} | |
td { | |
border: 1px dotted black; | |
padding: 3px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* movies.js | |
**/ | |
require.config({ | |
baseUrl: 'scripts', | |
paths: { | |
'angular': 'angular.min' | |
}, | |
shim: { | |
"angular": { | |
exports: "angular" | |
} | |
} | |
}); | |
requirejs(['angular'], function(angular) { | |
var moviesApp = angular.module('moviesApp', []); | |
moviesApp.controller('moviesController', function ($scope, $http) { | |
$http.get('data/movies.json') | |
.success(function(data) { | |
$scope.movies = data; | |
}); | |
$scope.orderProp = 'title'; | |
}); | |
}); |
No comments:
Post a Comment