-
-
Save jeffersonsouza/d3c09a24ea7fcb74b740 to your computer and use it in GitHub Desktop.
Angular Constants
This file contains hidden or 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.js | |
| 'use strict'; | |
| angular.module('myApp',['ionic']) | |
| .constant("config", { | |
| "apiUrl": "http://localhost:3000" | |
| }); | |
| // seuController.js | |
| angular.module('myApp') | |
| .controller('MyController', ['$scope', 'config', $scope, config | |
| console.log(config.apiUrl); | |
| ]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment