Angular& Json用于单页面应用程序

时间:2018-05-15 02:13:44

标签: angularjs json scope

对于项目,我们必须使用1个控制器创建单页应用程序。我们正在访问服务器,这就是我们给出的所有例子:

app.controller('myController', function($scope, $http) {
    $scope.target = 'targetURL';
    $scope.clickFunction = function() {
      $http.get($scope.target)
          .then(function successCall(response) { 

          }, function errorCall() {

          }
        );  
    };
});

我正在努力弄清楚如何显示已检索的数据

0 个答案:

没有答案