我需要幫助來寫這個沒有async: false,
。Rewite ajax請求和返回的值
var imageX;
var groupX;
$.ajax({
type:'GET',
url:'php/myphp.php',
dataType:'json',
async: false,
success: function(response){
imageX = response[0].studentName,
groupX = response[0].subjectId;
alertImageX();
}
});
function alertImageX() {
(function() {
var image = {
'back': { 'url':imageX, 'img':null },
'front': { 'url':'img/bg.jpg', 'img':null }
};
PHP
$query = $db->prepare('SELECT studentName, subjectId FROM grade3 WHERE eligible = ? LIMIT 1');
$array = array('Yes');
$query->execute($array);
$result = $query->fetchAll(PDO::FETCH_ASSOC);
echo json_encode($result);
期望的結果是什麼? – Chitowns24
我希望能夠獲得由AJAX調用返回的數據(即:imageX)。並避免'async:false',因爲這是不好的習慣。 – NathaliaZeed
在成功響應數據的地方,我們可以看到PHP代碼以及AJAX代碼嗎? – Chitowns24