0
該主題中有很多問題,但我是初學者,無法將答案放在一起。獲取數組作爲AJAX響應
我試圖通過ajax更新MySQL數據庫的表單,然後取回更新的數據庫作爲在主頁面中使用的數組(無需刷新頁面)。
我設法做了第一部分,但沒有管理第二部分 - 取回數組。
我的第一部分代碼:
HTML:
$("#form").submit(function(){
event.preventDefault();
var form = new FormData();
form.append("id", $('#id').val());
form.append("src", $('#src').val());
form.append("title_en", $('#title_en').val());
form.append("title_he", $('#title_he').val());
form.append("exhibition_en", $('#exhibition_en').val());
form.append("exhibition_he", $('#exhibition_he').val());
form.append("subjects_en", $('#subjects_en').val());
form.append("subjects_he", $('#subjects_he').val());
form.append("keywords_en", $('#keywords_en').val());
form.append("keywords_he", $('#keywords_he').val());
form.append("height", $('#height').val());
form.append("width", $('#width').val());
form.append("sold", $('#sold').val());
var settings = {
"async": true,
"crossDomain": true,
"url": "update.php",
"method": "POST",
"dataType": 'json',
"processData": false,
"contentType": false,
"mimeType": "multipart/form-data",
"data": form
}
$.ajax(settings).success(function(data) {
});
});
PHP:
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "chana_goldberg";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
$conn->set_charset("utf8");
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$id = $_POST['id'];
$src = $_POST['src'];
$title_en = $_POST['title_en'];
$title_he = $_POST['title_he'];
$exhibition_en = $_POST['exhibition_en'];
$exhibition_he = $_POST['exhibition_he'];
$subjects_en = $_POST['subjects_en'];
$subjects_he = $_POST['subjects_he'];
$keywords_en = $_POST['keywords_en'];
$keywords_he = $_POST['keywords_he'];
$height = $_POST['height'];
$width = $_POST['width'];
$sold = $_POST['sold'];
$sql = "UPDATE paintings_catalog SET title_en='$title_en', title_he='$title_he', exhibition_en='$exhibition_en', exhibition_he='$exhibition_he', subjects_en='$subjects_en', subjects_he='$subjects_he', keywords_en='$keywords_en', keywords_he='$keywords_he', height='$height', width='$width', sold='$sold' WHERE id='$id'";
$conn->query($sql);?>
你可能需要JSON(JavaScript對象符號),這是PHP支持。請參閱:http://php.net/manual/en/ref.json.php和http://www.w3schools.com/js/js_json.asp –
您的代碼易受SQL注入攻擊。請使用準備好的語句,而不是通過請求接收的SQL中嵌入字符串。 – trincot