Skip to content

Instantly share code, notes, and snippets.

@Epotignano
Last active August 29, 2015 14:05
Show Gist options
  • Save Epotignano/f828b835b8ae580ff6db to your computer and use it in GitHub Desktop.
Save Epotignano/f828b835b8ae580ff6db to your computer and use it in GitHub Desktop.
// adentro de la directiva
$http.get(/*URL a donde pedis los datos*/)
.success(function(response){
scope.var = response
})
.error(function(response){
/**Handle error**/
})
/**** en el template de la directiva ***/
<div> {{ var }}</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment