gpt4 book ai didi

javascript - 如何添加第二条 JSON 消息?

转载 作者:行者123 更新时间:2023-11-28 19:12:16 25 4
gpt4 key购买 nike

我正在创建一个标志性应用程序,并且希望能够将 JSON 字符串从 Web 服务器加载到我的应用程序中。到目前为止,我只能加载一条消息。

![这就是我的应用程序到目前为止的样子。我只能加载一条消息][1]

这是我的 HTML 代码:

<body>
<ion-view view-title="Announcements">
<ion-content ng-controller="Controller">

<ion-refresher
pulling-text="Pull to refresh..."
on-refresh="doRefresh()">
</ion-refresher>


<ion-list>
<ion-item>

<div class="list card">
<div class="item item-divider">{{announcement_name}} - {{date}}</div>
<div class="item item-body">
<div>
{{message}}
</div>
</div>
</div>

</ion-item>
</ion-list>
</ion-content>
</ion-view>
</body>

这是我的 javascript Controller :

.controller('Controller', function($scope, $http) {
$scope.items = [1,2,3];
$scope.doRefresh = function() {
$http.get("")
.success(function(data) {
$scope.announcement_name = data.announcement_name;
$scope.date = data.date;
$scope.message = data.message;
})
.finally(function() {
$scope.$broadcast('scroll.refreshComplete');
});
};
});

这就是我的 JSON 文件的样子。正如你所看到的,我有 2 个数组(消息),但只有一个正在加载。知道为什么吗?

[
{
"response1": {
"announcement_name": "ExampleMessage1",
"date": "26/05/2015",
"message": "ExampleMessage1"
},
"response2": {
"announcement_name": "ExampleMessage2",
"date": "27/05/2015",
"message": "ExampleMessage2"
}
}

]

最佳答案

您应该使用 ng-repeat 循环遍历 json 数组。

这是一个例子:

$http.get("http://www.wikicode.co.uk/announcement.json")
.success(function(data) {
$scope.datafromservice = data;
})
.finally(function() {
...
});

在你的 html 中类似这样的内容:

<div class="list card">
<div class="item item-divider" ng-repeat="message in data">{{message.announcement_name}} - {{messagedate}}</div>
</div>

这是 ng-repeat 的文档:https://docs.angularjs.org/api/ng/directive/ngRepeat

希望这会有所帮助。

更新

您可以将完整的 json 粘贴到 var 中。您的 json 可能看起来像这样(它是我正在处理的应用程序的示例):

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

reportapp.controller('TreeController', ['$http', '$scope', function ($http, $scope) {
$scope.treedata = [];

$http.get('../data/tree.json').success(function (data) {
$scope.treedata = data;
});

//After the http-call your data should look something like this:
$scope.treedata = [
{
"name": "Titel",
"id": "1"
},
{
"name": "Allgemeine Standardangaben",
"id": "2"
},
{
"name": "Strategie und Analyse",
"id": "3",
"children": [
{
"name": "Erklärung des Entscheidungsträgers",
"id": "4"
},
{
"name": "Wichtigste Nachhaltigkeitsauswirkungen",
"id": "5"
}
]
}]
}]);

然后它就可以使用 ng-repeat 访问数组,如下所示:

<body ng-app="reporting">
<ul id="treecontainer" ng-controller="TreeController as treeCtrl">
<li ng-repeat="knoten in treedata" id="{{knoten.id}}">{{knoten.name}}
<ul ng-show="knoten.children">
<li ng-repeat="kind in knoten.children" id="{{kind.id}}">{{kind.name}}</li>
</ul>
</ul>
</body>

如果你想显示子节点,你可以使用ng-show:

如果您有问题,请在这里发布,我会尽力帮助您。

关于javascript - 如何添加第二条 JSON 消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30547774/

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