我们目前正在尝试使用AngularJS从JsonStub获取 Json 数据。我们尝试复制 JsonStub 的示例,但没有成功将其与我们的 apikey 一起使用。
我们只想{"message":"hello world!"}
在 JsonStub 的 AngularJS 中显示。
这是我们的代码,请让我知道我们做错了。
谢谢你。
控制器
.controller('warrantyListController', function($scope, $http) {
$http({
url: 'http://jsonstub.com/jobs',
method: 'GET',
dataType: 'json',
data: '',
headers: {
'Content-Type': 'application/json',
'JsonStub-User-Key': 'xxxxx-xxxxx-xxxxx-xxxxx',
'JsonStub-Project-Key': 'xxxxx-xxxxx-xxxxx-xxxxx'
}
})
.success(function (data, status, headers, config) {
alert(JSON.stringify(data, null, 4));
});
})
JsonStub