mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-06 06:41:41 +00:00
12 lines
241 B
JavaScript
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;
|
|
}
|
|
});
|
|
}]);
|