Ajax.请求不工作
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当 method = 'post' 时,您需要使用“postBody”而不是“parameters”将参数发布到服务器端脚本
When method = 'post', you need to use "postBody" instead of "parameters" for having parameters posted to your server side script