0

我试图显示加载图像,直到 php 执行,查询在第二页上有效,但结果没有显示在第一页上,我知道我在这里遗漏了一些东西,有人可以帮我吗?我是 jquery 或 ajax 的新手。

主页.php

<html>
<head>
<!--Javascript-->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
$('#loading_spinner').show();

var post_data = "items=" + items;
$.ajax({
    url: 'list.php',
    type: 'POST',
    data: post_data,
    dataType: 'html',
    success: function(data) {
        $('.my_update_panel').html(data);
    },
    error: function() {
        alert("Something went wrong!");
    }
});

$('#loading_spinner').hide();
</script>
<style>
   #loading_spinner { display:none; }
</style>
</head>
<body>

<img id="loading_spinner" src="image/ajax-loader.gif">

<div class="my_update_panel">

<!--I am not sure what to put here, so the results can show here-->

</div>

list.php我测试了查询并打印了行。

<?php
   include_once("models/config.php");

   // if this page was not called by AJAX, die
   if (!$_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') die('Invalid request');

   // get variable sent from client-side page
   $my_variable = isset($_POST['items']) ? strip_tags($_POST['items']) :null;  
       //run some queries, printing some kind of result
   $mydb = new mysqli("localhost", "root", "", "db");
   $username = $_SESSION["userCakeUser"];

       $stmt = $mydb->prepare("SELECT * FROM products where username = ?");
   $stmt->bind_param('s', $username->username);
   $stmt->execute();
   // echo results

   $max = $stmt->get_result();
   while ($row = $max->fetch_assoc()) {
      echo $row['title'];
       echo $row['price'];
      echo $row['condition'];

   }

?>
4

4 回答 4

1

的 HTML。将 img 放入 .my_update_panel div

<div class="my_update_panel">
    <img id="loading_spinner" src="image/ajax-loader.gif">
</div>

JS

var url = 'list.php';
var post_data = "items=" + items;

$('.my_update_panel').load(url, post_data, function() {
    $(this +' #loading_spinner').fadeOut('slow');
});

您可以在此处找到许多可供下载的加载图像。

于 2013-09-26T19:04:54.127 回答
0

最好链接ajax回调函数。添加回调作为选项将在未来从 jquery 中删除。

http://api.jquery.com/jQuery.ajax/

弃用通知:jqXHR.success()、jqXHR.error() 和 jqXHR.complete() 回调自 jQuery 1.8 起已弃用。要为最终删除准备代码,请改用 jqXHR.done()、jqXHR.fail() 和 jqXHR.always()。

var post_data = items;
$('#loading_spinner').show();
$.ajax({
    url: 'list.php',
    type: 'POST',
    dataType: 'html',
    data: {"items":post_data},
})
.done(function() {
    console.log("success");
})
.fail(function() {
    console.log("error");
})
.always(function() {
    $('#loading_spinner').hide();
});

我在 always() 回调中隐藏了 loading_spinner,这样当 ajax 调用引发错误时,微调器也会消失。如果这不起作用,您必须在服务器端代码中搜索以解决问题。首先,您确定响应是 html 吗?您可能必须在 ajax 调用中将 dataType 设置为 text 。

于 2013-09-26T19:12:20.733 回答
0

有一个问题

var post_data = "items=" + items;

做了

$(document).ready(function(){
        $('#loading_spinner').show();
$.ajax({
    url: 'list.php',
    type: 'POST',
    data: {"items":items},
    dataType: 'html',
    success: function(data) {
        $('.my_update_panel').html(data);
        $('#loading_spinner').hide();     
    },
    error: function() {
        alert("Something went wrong!");
    }
});
});

让我知道是否适合你。

于 2013-09-26T18:45:50.140 回答
0

尝试在 ajax 中添加完整的事件,我希望它会起作用。参考 http://api.jquery.com/jQuery.ajax/

<html>
<head>
<!--Javascript-->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
$('#loading_spinner').show();

var post_data = "items=" + items;
$.ajax({
    url: 'list.php',
    type: 'POST',
    data: post_data,
    dataType: 'html',
    success: function(data) {
        $('.my_update_panel').html(data);
    },
    error: function() {
        alert("Something went wrong!");
    },
    complete:function(){
           $('#loading_spinner').fadeOut(500);
});

//$('#loading_spinner').hide();
</script>
<style>
   #loading_spinner { display:none; }
</style>
</head>
<body>

<img id="loading_spinner" src="image/ajax-loader.gif">

<div class="my_update_panel">

<!--I am not sure what to put here, so the results can show here-->

</div>
于 2013-09-26T19:05:35.780 回答