gpt4 book ai didi

javascript - 使用 $http 获取 JSON 数据

转载 作者:可可西里 更新时间:2023-11-01 16:55:48 25 4
gpt4 key购买 nike

我正在尝试使用 $http 函数获取 JSON 数据;我总是为此出错。这是我的 HTML 代码:

<!DOCTYPE html>
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<body>

<div ng-app="myApp" ng-controller="customersCtrl">

<ul>
<li ng-repeat="x in code">
{{ x.code }}
</li>
</ul>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("data.json")
.success(function (response) {$scope.code = response;})
.error(function (response) {alert("Error")})
});
</script>

</body>
</html>

这是我的 data.json 文件:

{
"code":"#include <stdio.h>

int main()
{
printf('Hello world');
return 0;
}"
}

这是 plunker http://plnkr.co/edit/Q4dsCjHM3ykgp2SaHw35?p=preview

最佳答案

请将您的数据更改为以下内容。基本上它应该是字符串,使用 pre 标记换行,然后将 enter 替换为 \n

{
"code": "#include <stdio.h>\n int main()\n printf('Hello world');\n return 0;\n}"
}

HTML

<ul>
<li ng-repeat="x in code">
<pre>{{ x }}</pre>
</li>
</ul>

Working Plunkr

关于javascript - 使用 $http 获取 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31920758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com