gpt4 book ai didi

后端更改时angularjs自动重新加载

转载 作者:行者123 更新时间:2023-12-04 02:43:22 27 4
gpt4 key购买 nike

我需要在我的应用程序中在后端更改时自动刷新。我添加了一个按钮来将 GET 重新加载到我的后端,但我不希望这样做。这是我的代码

<body data-ng-app="myPr">
<div ng-controller="TodosController">
<div ng-repeat="todo in todos">
<p>{{todo.title}} ...... {{todo.is_completed}}</p>
</div>
<button ng-click="reload()">Reload</button>
</div>
</body>

我的 app.js
var myPr = angular.module('myPr',[]);

myPr.controller("TodosController", function ($scope,$http){

$scope.reload = function () {
$http.get('http://localhost:3000/api/todos').
success(function (data) {
$scope.todos = data.todos;
});
};
$scope.reload();
});

谢谢

最佳答案

您可以定期重新加载数据。否则你需要设置类似 socket.io 的东西或 Pusher并在服务器更新时将通知推送到浏览器。

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

myPr.controller("TodosController", function ($scope,$http,$timeout){

$scope.reload = function () {
$http.get('http://localhost:3000/api/todos').
success(function (data) {
$scope.todos = data.todos;
});

$timeout(function(){
$scope.reload();
},30000)
};
$scope.reload();
});

关于后端更改时angularjs自动重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33273054/

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