当我使用“重定向”功能从Web应用程序转到新端口上的Jupyter应用程序时,我需要手动刷新页面才能打开它。 有自动刷新方法吗? 以下是我的服务器密钥代码
def open_comment(comment_id):
comment = Comment.query.get_or_404(comment_id)
docker.from_env().containers.get(comment.body).restart(timeout=10)
host = request.host.split(':')[0]
url = "http://" + host + ':' + str(comment.port) + '/lab'
return redirect(url)
以下是我的客户密钥代码
<form class="inline" method="post" target="_blank"
action="{{ url_for('.open_comment', comment_id=comment.id) }}">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
<button type="submit" class="dropdown-item">
<span class="oi oi-warning" aria-hidden="true"></span> Open
</button>
</form>