gpt4 book ai didi

javascript - 使用 AngularJS 使用 RESTful Web 服务

转载 作者:行者123 更新时间:2023-11-29 21:31:24 25 4
gpt4 key购买 nike

我正在阅读一些关于使用 AngularJS 使用 API 的教程...我在尝试运行 {{greeting.id}}{{ 时遇到了问题问候语.content}}。我假设这会呈现结果,但它们在我的屏幕上不可见。

Here is my CodePen: http://codepen.io/ChaseHardin/pen/bprObb/

  1. https://spring.io/guides/gs/consuming-rest-angularjs/
  2. http://codepen.io/theshravan/pen/mnbcx

为什么我的 id 和内容没有显示在 UI 上;我的 HTML 或 JavaScript 有问题吗?

HTML

<html>
<head>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js"></script>
</head>
<body ng-app="myApp">
<div ng-controller="GreetingController" class="container">
<h1>Greeting</h1>
<hr/>
<div ng-repeat="greeting in greetings" class="col-md-6">
<h4>{{greeting.id}}</h4>
<p>{{greeting.content}}</p>
</div>
</div>
</body>
</html>

JavaScript

var myApp = angular.module('myApp', []);

myApp.controller("GreetingController", function ($scope, $http) {
$http.get('http://rest-service.guides.spring.io/greeting').
success(function (data) {
$scope.greeting = data;
});
});

最佳答案

删除 ng-repeat。结果不在数组中。

关于javascript - 使用 AngularJS 使用 RESTful Web 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36322578/

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