gpt4 book ai didi

javascript - 在php中登录后不显示模态框

转载 作者:行者123 更新时间:2023-11-28 17:31:02 25 4
gpt4 key购买 nike

添加标题(位置:homepage.php)后,我的模式没有显示,但如果删除标题,模式就可以正常工作。我怎么可能做到呢?我也尝试过使用 echo 进行警报,并且发生了同样的事情,所以我不知道我的代码出了什么问题。我希望有人能帮助我谢谢!这是我的代码

登录.php

if(isset($_POST['submit']))
{
$email = $_POST['email'];
$password = $_POST['password'];

$object = new Login();
$object->getCredentials($email, $password);
}
?>

<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="POST">
<div>
<label><b>EMAIL ADDRESS</b></label>
<input type="email" name="email" placeholder="Email"></input>
</div>

<div>
<label><b>PASSWORD</b></label>
<input type="password" name="password" placeholder="Password"></input>
</div>
<button type="submit" id="submit" name="submit">Login</button>
</form>

进程登录.php

<?php
include_once 'db.php';
class Login
{
public function getCredentials($email, $password)
{
$email = $email;
$password = $password;

$object = new Db();
$stmt = $object->connect()->prepare("SELECT * FROM user WHERE email=?");
$stmt->execute([$email]);
$stmtFetch = $stmt->fetch();

if($stmt->rowCount()==1 && $stmtFetch['email'] == $email && $stmtFetch['password'] == $password)
{
echo "<script>$('#loginsuccess').modal('show')</script>";
header("location: homepage.php");
}
}
}

最佳答案

我在这里发现了您可能感兴趣的东西:
Interview Question: Can we have an echo before header?

问题是我们开始发送输出后无法发送 header ,如果在 echo 之前发送 header ,echo 将不会被执行。

试试这个:
解决方案 1:(来自上面的链接)。

ob_start();
echo "<script>$('#loginsuccess').modal('show')</script>";
header("location: homepage.php");
ob_end_flush();

解决方案 2:使用 JavaScript 重定向而不是 header 函数。

echo "<script>
$('#loginsuccess').modal('show');
window.location.replace('http://fullpath-homepage.php');
</script>";

附加说明:
您还可以使用:

window.location.href="http://example.com";
window.location.assign("http://example.com");

replace 方法导航到 URL,而不向历史记录添加新记录。

关于javascript - 在php中登录后不显示模态框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50420695/

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