码迷,mamicode.com
首页 > Web开发 > 详细

angular js 多处获取ajax数据的方法

时间:2017-05-05 18:28:15      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:cart   data   ctr   json   rod   service   scope   function   get   

angular js 多处获取ajax数据的方法

var app=angular.module("cart",[]);
app.service("getData",function ($http) {
return{
ajax:function () {
return $http.get("product.json");
}
}
});

app.controller("listCtrl",function ($scope,getData) {
getData.ajax().then(function (res) {
$scope.data=res.data;
})
});
app.controller("detailCtrl",function ($scope,getData) {
getData.ajax().then(function (res) {
$scope.data=res.data;
})
});

angular js 多处获取ajax数据的方法

标签:cart   data   ctr   json   rod   service   scope   function   get   

原文地址:http://www.cnblogs.com/yaomengli/p/6814119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!