网络编码的新手,我正在努力实现一些简单的事情: 显示一个页面上有一个大按钮图像,单击它时,它将在我的Raspberry Pi上执行一个简单的命令行。执行完成后,我想返回同一页面准备再按一次按钮。
所以,我使用以下内容:
<?php
if(isset($_GET['trigger']) && $_GET['trigger'] == 1)
{
error_reporting(E_ALL);
exec('<something>');
usleep(1000000);
exec('<something>');
header("Location: push.php");
exit;
}
?>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="container">
<a href='push.php?trigger=1' class="btn"></a>
</div>
</body>
</html>
然而,在exec完成后,浏览器不会重定向回原始页面,或者确实如此,但网址是:
http://10.0.0.1/push.php?trigger=1
哪个有GET参数。因此,我无法再次单击该按钮,直到我按下浏览器上的后退按钮或刷新按钮。
有什么想法......?
答案 0 :(得分:0)
一个更优雅的解决方案可能是使用ajax,我看到你已经有了jquery所以你可以包含一个带有这段代码的脚本
var button = $('.btn')
$(document).on('click', '.btn', function(){
button.css('display', 'none');
$.get('push.php?trigger=1', function(){
button.css('display', 'block');
});
});
这将调用该网站而不关心响应并且它将执行您的脚本,我建议使用<button></button>
标记而不是<a></a>
来避免重定向
如果您想进一步改进代码,我会将脚本与html分开,也许可以用POST而不是GET来调用它