JSファイルで私はこの機能を実行しています:
$(function() {
$(".button").click(function() {
//get the button's ID (which is equal to its row's report_id)
var emergency = this.id;
var button = this.attributes['name'].value;
var dataString = 'reportid=' + emergency;
alert(dataString);
if (button == "clockin") {
$.ajax({
type: "POST",
url: "/employeetimeclock.php",
data: dataString,
success: function() {
window.location = "/employeetimeclock.php";
}
});
} else if (button == "closereport") {
var r = confirm("Are you sure you want to close this report?\nThis action CANNOT be undone!");
if (r == true) {
$.ajax({
type: "POST",
url: "/closeemergencyreport.php",
data: dataString,
success: function() {
alert("Report Successfully Closed!");
window.location = "/closeemergencyreport.php";
},
error: function() {
alert("An error has occured, the report was not closed");
}
});
} else {
alert("Report was not closed.");
}
}
});
});
else if(closeemergencyreport.php)の場合、そのphpスクリプトのコードは次のとおりです。
<?php
require_once("models/config.php");
require_once("models/header.php");
require_once("models/dbconnect.php");
$reportid = $_POST['reportid'];
var_dump($_POST);
$sql = "UPDATE emergency_report SET report_closed = '1' WHERE report_id IN ( $reportid )";
//execute and test if succesful
$result = mysql_query($sql) or die(mysql_error());
if($result){
} else{
}
?>
私は他の3ページでこれとまったく同じことを行いましたが、問題なく動作しますが、このphpスクリプトで、VAR_DUMPが空の配列を返すと言っている場合に問題が発生します。私は約1時間半の間コードを読んで再読しているので、燃え尽きて外の景色を見る必要があると思います。私はサイトのいたるところにいて、誰も私のために働く解決策を持っていませんでした。
火のバグがjavascriptが実行されているフォームのページにこれを示しているので、私はそれが投稿していることを知っています:http:
//i.imgur.com/hItdVU1.png(申し訳ありませんが画像を投稿することはできません)