Files
vczero.github.io/tuban/lib/controllers/index/article.js
T
2014-12-26 17:02:29 +08:00

12 lines
241 B
JavaScript

app.controller('ArticleController',
['$http', '$scope', 'ServiceConfig',
function($http, $scope, ServiceConfig){
$http.get(ServiceConfig.article_get).success(function(data){
if(data.status){
$scope.items = data.items;
}
});
}]);