gpt4 book ai didi

javascript - 如何在 AngularJs 中将 json 数组转换为 js 数组?

转载 作者:行者123 更新时间:2023-12-03 10:41:52 24 4
gpt4 key购买 nike

我刚开始 Angular 和前端开发,似乎无法解决以下问题。

我已将一个变量重新分配给另一个变量:$scope.testarray = $scope.todos;但是当使用 Angular 绑定(bind)时,只会显示“todos”。

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

App.controller('TodoCtrl', function($scope, $http) {
$http.get('todos.json')
.then(function(res){
$scope.todos = res.data;
});

$scope.testarray = $scope.todos;
});

和 html:

<!doctype html>
<html ng-app="App" >
<head>
<meta charset="utf-8">
<title>Todos $http</title>
<link rel="stylesheet" href="style.css">
<script>document.write("<base href=\"" + document.location + "\" />"); </script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.js"></script>
<script src="app.js"></script>
</head>
<body ng-controller="TodoCtrl">
<ul>
<li ng-repeat="todo in todos">
{{todo.text}} - <em>{{todo.done}}</em>
</li>
</ul>
this doesn't display: {{testarray}}
</br></br>
but this does dislay: {{todos}}
</body>
</html>

最佳答案

在你的代码中

App.controller('TodoCtrl', function($scope, $http) {  $http.get('todos.json')
.then(function(res){
$scope.todos = res.data;
}); //.then block ends here
$scope.testarray = $scope.todos;
});

$scope.testarray = $scope.todos; 写在 then block 之外。 $http.get 是异步调用,因此,即使在定义 $scope.todos 之前,也会执行此行。

将其移至 .then block 内将解决您的问题。假设此处声明了 $scope.testarray

App.controller('TodoCtrl', function($scope, $http) {
$http.get('todos.json').then(function(res){
$scope.todos = res.data;
$scope.testarray = $scope.todos;//移到里面
});
});

如果您需要更多帮助,请发表评论。

关于javascript - 如何在 AngularJs 中将 json 数组转换为 js 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28737792/

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