Angular使用ajax获取JSON数据

时间:2017-01-17 02:06:27

标签: angularjs json ajax

如何通过带角度的ajax获取json数据?我尝试了很多,但我的代码不起作用。 我的代码:

<input type='text' value='123456'>

<input type='text' maxlength='6' value='123456'>

1 个答案:

答案 0 :(得分:2)

你有没有试过这个..

<script>
        var app = angular.module('test', [])
        app.controller('TestCtrl', function ($scope, $http) {
            $http.get("http://jsonplaceholder.typicode.com/users").then(function(res,status,xhr) {
                $scope.data = res.data;
            });
        });
    </script>