1. 程式人生 > >angular js 多處獲取ajax數據的方法

angular js 多處獲取ajax數據的方法

list ont listctrl lct module 方法 detail car 獲取

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數據的方法