如何通过带角度的ajax获取json数据?我尝试了很多,但我的代码不起作用。 我的代码:
<input type='text' value='123456'>
<input type='text' maxlength='6' value='123456'>
答案 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>