Skip to content
Servico que facilita a comunicacao com os servidores remotos via http com o objeto XMLHttpRequest a funcao curry, retornando um promisse
JavaScript
Find file
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Failed to load latest commit information.
.gitignore
README.md
bower.json
gulpfile.js
http.js
package.json
script.txt

README.md

$http

Servico que facilita a comunicacao com os servidores remotos via http com o objeto XMLHttpRequest a funcao curry, retornando um promisse

this.Ninja(['$http'], function ($http) {

  function render(xhr) {
    document.querySelector('body').innerHTML = xhr.responseText;
  }

  $http('GET', './template.html', '').when(200, render);

});
Something went wrong with that request. Please try again.