gpt4 book ai didi

javascript - 切换路线时停止 Controller 的事件

转载 作者:行者123 更新时间:2023-11-28 07:35:55 25 4
gpt4 key购买 nike

我通过 AngularJS 创建单页应用程序,我发现了我的问题。我在路线 A 中通过 jQuery 每 2 分钟刷新一次数据。当我更改为其他路线时, Controller 中的该功能仍然有效。这是我的代码。

App.js

var newsapp = angular.module('newsAppMD', ['ngRoute']);

newsapp.config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/news', {
templateUrl: 'templates/news.html',
controller: 'imageNewsCtrl'
}).
when('/news/:nameCat', {
templateUrl: 'templates/news-thumbnail.html',
controller: 'newsPageCtrl'
}).
otherwise({
redirectTo: '/news'
});
}]);

newsapp.controller('imageNewsCtrl', function($scope, $http, $interval, $timeout ) {
$('#bottom-bar').find('#epg').hide();
$scope.updateTimeEPG = 120000;
$scope.fetchFeed = function() {
$http.get("http://wi.th/thaipbs_tv_backend/epg_forJS.php").success(function(response) {
$scope.items = response.Schedule;
console.log($scope.items);
$timeout(function() { $scope.fetchFeed(); }, $scope.updateTimeEPG);
}).then(function() {
$('#bottom-bar').find('.loading').hide();
$('#bottom-bar').find('#epg').show();
});
};

$scope.fetchFeed();
});

newsapp.controller('newsPageCtrl', function($scope, $http, $location) {
// blah blah blah
}]);

我选择/news imageNewsCtrl 工作。当我切换到其他路线时,imageNewsCtrl 中的功能仍然有效(当我更改路线时,我看到功能打印 console.log)。我想在更改路线时停止 Controller 中的功能。谢谢大家的建议。 :)

最佳答案

我不太确定,但尝试使用 $stateProvider 而不是 $routeProvider。如果这样做,那么您需要 npm install angular-ui-router (它是 powerful 第三方模块)并替换 ngroute。我仅将 $routeProvider 用于 .otherwise 函数。您还可以使用 $stateProvider 做很多更酷的事情,例如 onEnter 和 onExit。另一件事是我建议您仅使用 Angular 而不是 jQuery。我真的不认为你同时使用两者有什么意义。使用 Angular 的双向数据绑定(bind)!另外,如果你真的想进入 Angular,那么我推荐 John Papa's style guide 。这些人知道他所说的如何制作出色的 Angular 应用程序。我希望这些信息有帮助!

关于javascript - 切换路线时停止 Controller 的事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28599261/

25 4 0
文章推荐: 从缓存加载网页时 JavaScript 不执行
文章推荐: javascript - 根据 PHP 输出更改 Javascript src
文章推荐: javascript - 是什么导致了这个 JS 控制台错误?
文章推荐: javascript - 使用 JavaScript 在
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com