Questions tagged «reload»

重新加载是重新请求并重新呈现当前显示页面的过程





13
如何使用AngularJS重新加载或重新渲染整个页面
在基于几个用户上下文渲染了整个页面并提出了几个$http请求之后,我希望用户能够切换上下文并再次重新渲染所有内容(重新发送所有$http请求等)。如果我只是将用户重定向到其他地方,则一切正常: $scope.on_impersonate_success = function(response) { //$window.location.reload(); // This cancels any current request $location.path('/'); // This works as expected, if path != current_path }; $scope.impersonate = function(username) { return auth.impersonate(username) .then($scope.on_impersonate_success, $scope.on_auth_failed); }; 如果使用$window.location.reload(),则正在等待响应的$http请求中的某些请求auth.impersonate(username)将被取消,因此无法使用它。此外,骇客$location.path($location.path())也无法运作(一无所获)。 还有另一种方法可以重新渲染页面,而无需再次手动发出所有请求吗?


8
如何在REPL中重新加载Clojure文件
重新加载Clojure文件中定义的功能而不必重新启动REPL的首选方法是什么。现在,为了使用更新的文件,我必须: 编辑 src/foo/bar.clj 关闭REPL 打开REPL (load-file "src/foo/bar.clj") (use 'foo.bar) 此外,(use 'foo.bar :reload-all)不会产生所需的效果,即评估函数的修改主体并返回新值,而不是表现为源未发生任何变化。 说明文件: 加载文件 用

4
更改源代码时自动加载gunicorn
最后,我将开发环境从runserver迁移到gunicorn / nginx。 将runserver的自动重载功能复制到gunicorn会很方便,因此当源更改时,服务器会自动重新启动。否则,我必须使用手动重新启动服务器kill -HUP。 有什么方法可以避免手动重启?

13
单击后刷新页面的按钮
我需要一个按钮,它将在用户单击时刷新页面。我尝试了这个: <input type="button" value="Reload Page" onClick="reload"> 要么 <input type="button" value="Refresh Page" onClick="refresh"> 但是两者都没有。

2
用JavaScript重新加载页面的首选方法?[关闭]
已关闭。这个问题是基于观点的。它当前不接受答案。 想改善这个问题吗?更新问题,以便通过编辑此帖子以事实和引用的形式回答。 6年前关闭。 改善这个问题 您希望采用哪种方式(使用按钮)重新加载当前页面? 1 <input type="button" value="Reload" onClick="history.go(0)"> 2 <input type="button" value="Reload" onClick="location.reload(true)"> 3 <input type="button" value="Reload" onClick="window.location.reload(true)"> 4 <input type="button" value="Reload" onClick="window.location.href=window.location.href"> 5 <input type="button" value="Reload" onClick="document.location.reload(true)"> 6 <input type="button" value="Reload" onClick="document.location.href=document.location.href"> 由于页面的网址经常更改,因此AFAIK会提供“后备功能”,例如 <a href="urlOfCurrentPage.html" onclick="window.location.reload(true);return false;">Reload</a> 不会为我工作,对吧?
103 javascript  reload 


2
Rails控制台:重新加载!没有反映模型文件中的更改?可能是什么原因?
之前它工作正常。我一直在玩一些配置。所以可能是我在不知不觉中更改了一些配置。 这是环境/ development.rb的配置 config.cache_classes = false # Log error messages when you accidentally call methods on nil. config.whiny_nils = true # Show full error reports and disable caching config.consider_all_requests_local = true config.action_view.debug_rjs = true config.action_controller.perform_caching = false # Don't care if the mailer can't send config.action_mailer.raise_delivery_errors = false # Print …


1
如何在Angular 2中分页重新加载页面?[关闭]
已关闭。这个问题需要细节或说明。它当前不接受答案。 想改善这个问题吗?添加详细信息并通过编辑此帖子来澄清问题。 3年前关闭。 改善这个问题 如何在Angular 2上重新加载当前页面? 如果iam在第2页(分页)并刷新页面,它将显示第1页(URL pageload),但我希望我刷新第2页,它将出现在第2页中

16
第一页加载后刷新一次页面
我想实现一个JavaScript代码,声明以下内容:如果页面完全加载,请立即刷新页面,但仅刷新一次。我被困在“只有一次”: window.onload = function () {window.location.reload()} 这给出了一个没有“仅一次”的循环。如果有帮助,将加载jQuery。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.