AngularJS关于将工厂转换为提供程序的建议?

时间:2018-12-08 03:41:07

标签: angularjs angularjs-factory angularjs-provider

我需要将工厂中的内容注入到Config中,但我知道这是不可能的,并且只有在使用提供程序的情况下才有可能,所以任何人都可以建议如何将我的工厂转换为提供程序吗?

var templateApp = angular.module('templateApp', ['ngMaterial', 'ngRoute']);

templateApp.factory('pageFactory', function () {

    var pages = [
                {icon: 'assessment', name: 'Overview', route: '/partial1', template: 'View1.html'},
                {icon: 'assignment', name: 'Dashboard', route: '/partial2', template: 'View2.html'}
        ];

    var factory = {};
    factory.getPages = function(){
        return pages;
    }

    return factory;
});

非常感谢

Dom

0 个答案:

没有答案