PHP 到 Python 服务器页面,退出,停止页面加载

发布于 2024-10-20 18:27:47 字数 667 浏览 1 评论 0原文

我试图找到相当于 php 的 exit 命令来停止页面加载。例如我有:

if(isset($_SESSION['username'])){

}
else{
    echo 'Your session has expired, please click <a href="https://dev.test.com/">here</a>';
    exit;
}

注意 else 子句上的退出..它将停止加载页面的其余部分。

有没有办法在 mod_pythong psp <% exit %>

Sys.exit(0) 中执行此操作,因为现在我收到 HTTP 500 错误,即使日志

[Tue Mar 15 15:36:11 2011] [error] [client
    10.184.98.38] PythonHandler mod_python.psp:   File "/var/www/html/index.psp", line 38, in ?\n    sys.exit(0) [Tue Mar 15 15:36:11 2011] [error] [client
    10.184.98.38] PythonHandler mod_python.psp: SystemExit: 0

I am trying to find the equivalent to php's exit command to stop a page from loading. For example I have:

if(isset($_SESSION['username'])){

}
else{
    echo 'Your session has expired, please click <a href="https://dev.test.com/">here</a>';
    exit;
}

Notice the exit on the else claus..it will stop the rest of the page from loading.

Is there a way to do this in mod_pythong psp <% exit %>

Sys.exit(0) doesn't seem to work because now i get a HTTP 500 error, even though the logs

[Tue Mar 15 15:36:11 2011] [error] [client
    10.184.98.38] PythonHandler mod_python.psp:   File "/var/www/html/index.psp", line 38, in ?\n    sys.exit(0) [Tue Mar 15 15:36:11 2011] [error] [client
    10.184.98.38] PythonHandler mod_python.psp: SystemExit: 0

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情愿 2024-10-27 18:27:47

像这样的东西怎么样,使用 sys.exit

import sys
sys.exit(0)

传递给 exit 的数字是退出代码 - 通常,如果没有错误,则为 0。

What about something like this, using sys.exit :

import sys
sys.exit(0)

The number passed to exit being the exit code -- generally, 0 when there is no error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文