wender / angular-correios

Módulo para AngularJS que te ajudará a manipular a API dos Correios

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

angular-correios

Módulo para AngularJS que te ajudará a manipular a API dos Correios.

Installation

bower install --save angular-correios

Usage

angular.module('app', ['angular-correios'])
.controller('MyApp', function () {
	$scope.ourPostalCode = false;

	Correios.get('02011200').then(function (data) {
		$scope.ourPostalCode = data.cep;
	});
});

About

Módulo para AngularJS que te ajudará a manipular a API dos Correios


Languages

Language:JavaScript 100.0%