Created
February 7, 2016 16:11
-
-
Save asethwright/afa606a9d29c02c2cc36 to your computer and use it in GitHub Desktop.
Example for scott
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
app.controller('BaseController', function() { | |
this.message = "Ready"; | |
this.players = data; | |
//this.players.fieldGoalPercentage = this.players.fieldGoals / this.players.fieldGoalsAttempted; | |
//this doesn't work because this.players is an array of players | |
//so it's not assigning to everyone in the array | |
//if you wanted to use this method youd have to do a loop | |
// something like for(var i in this.players) { this.players[i].fieldGoalPercentage = ... } | |
//my suggestion instead is to write a function to retrieve this info | |
this.fieldGoalPercentage = function(player) { | |
return (player.fieldGoals / player.fieldGoalsAttempted) * 100; | |
} | |
//in index.html | |
// <td>{{base.fieldGoalPercentage(player)}}</td> | |
this.sortProperty = "last"; | |
this.reverseSort = false; | |
this.sort = function(prop){ | |
this.sortProperty = prop; | |
this.reverseSort = !this.reverseSort; | |
}; | |
console.log(this.players.fieldGoalPercentage); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment