factory方法返回的是对象,json或数组,而service方法返回的是字符串类型的数据
angular.module(‘myApp‘,[]).factory(‘服务名‘,function(){
return {uname:‘kevin‘,pwd:‘123‘}
}).controller(‘ctrlname‘,function(‘服务名‘,$scope){
}.directive(‘myDirective‘, function(){
return {
template: ‘<button>Click me</button>‘
}
})
时间: 2025-01-14 08:07:34