//это в твоем сервисе пишешь ф-ии такого типа
function getTasks() {
var defer = $q.defer();
$http.get("tasks.json").then(function (response) {
defer.resolve(response);
}, function (err) {
defer.reject(err);
})
return defer.promise;
}
//теперь можешь с этим работать
$scope.tasks = {}; // а если у тебя есть роутинг, можешь про resolve прочитать, ну или могу пример написать
YourService.getTasks().then(function(response) {
tasks = response; // или response.data смотря, что у тебя там приходит - какая структура
}, function(err) {
$scope.errors = "error";
})
AppRun.$inject = ['$rootScope', '$http'];
function AppRun($rootScope, $http) {
$http.get('user_data/').success(function(data) {
$rootScope.$broadcast('userDataUpdated', data); //здесь уже в любом месте приложения получаете пришедшие данные
})
}
AppRun.$inject = ['UserService'];
function AppRun(UserService) {
UserService.loadUserData(); //В другом месте просто получаете из этого же сервиса данные, само собой там всякие проверки сделайте
})
app.use(function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
app.get('/', function(req, res, next) {
// Handle the get for this route
});
app.post('/', function(req, res, next) {
// Handle the post for this route
});
@Query("select d from DiscountsEntity d where d.id = :id_item")
Stack<Integer> stack = new Stack<Integer>();
Integer value = 1;
stack.add(value);
value = 2;
stack.add(value);
//и т.д
Stack<Integer> stack = new Stack();
Integer value = 1;
for(;value<10;value++)
stack.add(value);
import org.junit.Test;
import junit.framework.Assert;
public class MathTest {
@Test
public void testEquals() {
//указываем что значения должны быть равными
Assert.assertEquals(4, 2 + 2);
Assert.assertTrue(4 == 2 + 2);
}
@Test
public void testNotEquals() {
//указываем что значение должно должно быть false
Assert.assertFalse(5 == 2 + 2);
}
}