我是使用离子框架的新手。
我正在使用一个示例在services.js中的应用程序中显示联系人

angular.module('starter.services', []).factory('Equipements', function() {
    var equipements = [{
        id: 0,
        name: 'Scruff McGruff'
    }, {
        id: 1,
        name: 'G.I. Joe'
    }, {
        id: 2,
        name: 'Miss Frizzle'
    }];
    return {
        all: function() {
            return equipements;
        },
        get: function(equipId) {
            // Simple index lookup
            return equipements[equipId];
        }
    }
})


但是我想使用一种从MySQL数据库返回JSON数组的资源。

离子可能吗?

先感谢您

最佳答案

是的,有可能。

angular.module('starter.services', []).factory('Equipements', function($http) {
    var equipements = {};
    $http({
        method: 'GET',
        url: 'http://example.com/get_all_equipments'
    }).
    success(function(data, status, headers, config) {
        equipements = data;
    });
    return {
        all: function() {
            return equipements;
        }
    }
})

09-19 12:34