码迷,mamicode.com
首页 > Web开发 > 详细

[Angular-Scaled Web] 9. Control your promises with $q

时间:2014-12-26 18:28:24      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

Learn how to manually control how asynchronous requests are handled with the use of promises. Because $http is built to work with promises, we saw a foreshadow of them in the previous lesson. We will take this a step further but seeing how to manually create a promise and then resolve or reject it as we see fit.

 

angular.module(‘eggly.models.categories‘, [

])
    .service(‘CategoriesModel‘, function ($http, $q) {
        var CategoriesModel = {},
            URLS = {
                FETCH: ‘data/categories.json‘
            },
            categories;


        function extract(result) {
            return result.data;
        }

        function cacheCategories(result) {
            categories = extract(result);
            return categories;
        }

        CategoriesModel.getCategories = function() {
            return (categories) ? $q.when(categories) : $http.get(URLS.FETCH).then(cacheCategories);
        };

        CategoriesModel.getCategoryByName = function(categoryName) {

            function findCategory(){
                return _.find(categories, function(c){
                    return c.name == categoryName;
                })
            }

            return $q(function(resolve, reject) {
                //resolve it when categories are set
                if(categories){
                    resolve(findCategory());
                }else{
                    //if not set, get the categories
                    CategoriesModel.getCategories()
                        .then(function() {
                            resolve(findCategory());
                        })
                }
            })
        };

        return CategoriesModel;
    })
;

 

[Angular-Scaled Web] 9. Control your promises with $q

标签:

原文地址:http://www.cnblogs.com/Answer1215/p/4185959.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!