标签:style io ar sp 数据 on cti 代码 line
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>‘
}
})
标签:style io ar sp 数据 on cti 代码 line
原文地址:http://www.cnblogs.com/toward-the-sun/p/4068025.html