var app = angular.module("myApp", [], function($provide) {
//自定义服务
$provide.provider("CustomServer", function() {
this.$get = function() {
return {
message: "CustomServer message"
}
}
})
//自定义工厂
$provide.factory('CustomFactory', function() {
return [1, 2, 3, 4, 5, 6]
})
//自定义服务
$provide.service('Customserve2', function() {
return ["上海", "北京", "天津"]
})
})
app.controller("testController", function($scope, CustomServer, CustomFactory, Customserve2) {
$scope.name = "问苍天情为何物,直教人生死相许。";
console.log("服务:", CustomServer)
console.log("服务:", Customserve2)
console.log("工厂:", CustomFactory)
})
如图: