Ajax.请求不工作

发布于 2024-09-05 21:53:47 字数 1008 浏览 3 评论 0原文

我正在使用 scriptaculous 对列表进行排序,但我无法让 ajax 请求部分工作。

这是我的代码:

<script type="text/javascript">
  Sortable.create("images_list", {
      onUpdate: function() {
      var list = Sortable.serialize("images_list");
      alert(list);
          new Ajax.Request('processor.php', {
              method: 'post',
              parameters: { data: list }
          });

      }
  });

我已经警告了序列化字符串,这部分工作正常:

images_list[]=18&images_list[]=19&images_list[]=21&images_list[]=22&images_list[]=20

所以排序工作正常,但是数据字符串似乎在processor.php中不可用

<?php

//Connect to DB require_once('connect.php');

parse_str($_POST['数据']);

for ($i = 0; $i < count($images_list); $i++) { $id = $images_list[$i]; mysql_query("更新图像 SET 排名 = '$i' WHERE id = '$id'"); } ?>

有什么想法为什么数据没有发布吗?我已经测试过processor.php 页面是否确实被调用,确实如此。

谢谢

I am sorting a list using scriptaculous, i can't get the ajax request part to work.

This is my code:

<script type="text/javascript">
  Sortable.create("images_list", {
      onUpdate: function() {
      var list = Sortable.serialize("images_list");
      alert(list);
          new Ajax.Request('processor.php', {
              method: 'post',
              parameters: { data: list }
          });

      }
  });

I Have alerted out the serialize string, this part is working fine:

images_list[]=18&images_list[]=19&images_list[]=21&images_list[]=22&images_list[]=20

So the sorting is working fine, however the data string doesn't seem to be available in the processor.php

<?php

//Connect to DB
require_once('connect.php');

parse_str($_POST['data']);

for ($i = 0; $i < count($images_list); $i++) {
$id = $images_list[$i];
mysql_query("UPDATE images SET ranking = '$i' WHERE id = '$id'");
}
?>

Any ideas why the data is not getting posted? I have tested to see if the processor.php page is actualy being invoked, and it is.

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

栖迟 2024-09-12 21:53:47

当 method = 'post' 时,您需要使用“postBody”而不是“parameters”将参数发布到服务器端脚本

When method = 'post', you need to use "postBody" instead of "parameters" for having parameters posted to your server side script

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文