繁体   English   中英

如何使用jQuery在ajax调用中传递多个参数

[英]how to pass multiple parameter in ajax call using jquery

当天的问候!!!

我在用ajax URL传递参数时遇到问题。 我正在尝试使用jquery $ .ajax方法向我的PHP脚本发送多个数据,但是当我连接多个数据时,我只能传递单个数据。 当我尝试更新其他字段但该字段未更新且第一个字段已更新时。 仅第一场更新。 剩余字段不会更新。 我面临更新其他字段的问题。 而且我也尝试在ajax URL中传递多个参数,但出现错误。 不更新任何字段。
请检查我的代码并给我解决方案。

希望大家都明白。

谢谢!!!

这是我的代码:

<?php
include("connect.php");
?>
<!DOCTYPE html>
<html>
<head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
    <meta charset="utf-8">
    <title>Editable Tables using jQuery - jQuery AJAX PHP</title>   
    <link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css">
    <link href="assets/css/custom.css" rel="stylesheet" type="text/css">
</head>
<body>
    <div class="container">    
      <div style="text-align:center;width:100%;font-size:24px;margin-bottom:20px;color: #2875BB;">Click on the underlined words to edit them</div>
      <div class="row">
        <table class= "table table-striped table-bordered table-hover">
            <thead>
                <tr>
                    <th colspan="1" rowspan="1" style="width: 180px;" tabindex="0">FName</th>
                    <th colspan="1" rowspan="1" style="width: 220px;" tabindex="0">LName</th>
                    <th colspan="1" rowspan="1" style="width: 288px;" tabindex="0">Email</th>

                    <th colspan="1" rowspan="1" style="width: 288px;" tabindex="0">Gender</th>
                    <th colspan="1" rowspan="1" style="width: 288px;" tabindex="0">Address</th>
                    <th colspan="1" rowspan="1" style="width: 288px;" tabindex="0">City</th>
                    <th colspan="1" rowspan="1" style="width: 288px;" tabindex="0">Course</th>
                    <th colspan="1" rowspan="1" style="width: 288px;" tabindex="0">Hobby</th>
                </tr>
            </thead>

            <tbody>
                <?php
                $query = mysql_query("SELECT * FROM student_data");
                $i=0;
                while($fetch = mysql_fetch_array($query))
                {
                 if($i%2==0) $class = 'even'; else $class = 'odd';
                 echo'<tr class="'.$class.'">
                 <td><span class= "xedit" id="'.$fetch['id'].'">'.$fetch['fname'].'</span></td>
                 <td><span class= "xedit" id="'.$fetch['id'].'">'.$fetch['lname'].'</span></td>
                 <td><span class= "xedit" id="'.$fetch['id'].'">'.$fetch['email'].'</span></td>

                 <td><span class= "xedit" id="'.$fetch['id'].'">'.$fetch['gender'].'</span></td>
                 <td><span class= "xedit" id="'.$fetch['id'].'">'.$fetch['address'].'</span></td>
                 <td><span class= "xedit" id="'.$fetch['id'].'">'.$fetch['city'].'</span></td>
                 <td><span class= "xedit" id="'.$fetch['id'].'">'.$fetch['course'].'</span></td>
                 <td><span class= "xedit" id="'.$fetch['id'].'">'.$fetch['hobby'].'</span></td>
             </tr>';                            
         }
         ?>
     </tbody>
 </table>
</div>
<script src="assets/js/jquery.min.js"></script> 
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/bootstrap-editable.js" type="text/javascript"></script> 
<script type="text/javascript">
    jQuery(document).ready(function() {  
        $.fn.editable.defaults.mode = 'popup';
        $('.xedit').editable();     
        $(document).on('click','.editable-submit',function(){
         var x = $(this).parents('td').children('span').attr('id');
         var y = $('.input-sm').val();
         var z = $(this).parents('td').children('span');
         alert(x);
         alert(y);
         alert(z);
         $.ajax({
            url:"process.php?id="+x+"&fname="+y,
            type: 'GET',
            success: function(s){
               if(s == 'city'){
                   $(z).html(y);}
                   if(s == 'error') {
                       alert('Error Processing your Request!');}
                   },
                   error: function(e){
                       alert('Error Processing your Request!!');
                   }
               });
     });
    });
</script>
</div>
</body>
</html>

这是我的另一个文件:

<?php
include("connect.php");
if($_GET['id'])
{
    $id = $_GET['id'];
    $fname = $_GET['fname'];
    $lname=$_GET['lname'];
    $email=$_GET['email'];

    $gender=$_GET['gender'];
    $address=$_GET['address'];
    $city=$_GET['city'];
    $course=$_GET['course'];
    $hobby = explode(',', $_GET['hobby']);
    if(mysql_query("UPDATE student_data SET fname='$fname', lname = '$lname', email = '$email', gender='$gender', address='$address', city='$city', course='$course', hobby='$hobby' where id='$id'"));
    echo 'success';
}
?>

这里是Ajax代码:

<script type="text/javascript">
    jQuery(document).ready(function() {  
        $.fn.editable.defaults.mode = 'popup';
        $('.xedit').editable();     
        $(document).on('click','.editable-submit',function(){
         var x = $(this).parents('td').children('span').attr('id');
         var y = $('.input-sm').val();
         var z = $(this).parents('td').children('span');
         alert(x);
         alert(y);
         alert(z);
         $.ajax({
            url:"process.php?id="+x+"&fname="+y,
            type: 'GET',
            success: function(s){
               if(s == 'city'){
                   $(z).html(y);}
                   if(s == 'error') {
                       alert('Error Processing your Request!');}
                   },
                   error: function(e){
                       alert('Error Processing your Request!!');
                   }
               });
     });
    });
</script>

在此处输入图片说明

问题在这里:

url:"process.php?id="+x+"&fname="+y,

在这里,您仅发送idfname并在php脚本中尝试获取:

$id = $_GET['id'];
$fname = $_GET['fname'];
$lname=$_GET['lname'];

这么多的参数,这是错误的。

发送多个参数的正确方法是:

data: {
    key1: value1,
    key2: value2,
    key3: value3,
    and so on
}

或通过在其中附加所有keyvalue来格式化适当的url,例如:

key1=value1&key2=value2&key3=value3

用于发送单参数

data: "id="+id,

用于发送多个参数

data: {
    id: id,
    fname: fname
},

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM