0

あなたの助けが必要です。

ajax jqueryでテーブルに動的に改行を作成するコードを作りました。

var nouvelle_ligne = $('<tr><td class="thtime">'+hours+'h'+minutes+'</td><td>Modification de l\'équipe de Quart : <b class="textepersocdq">'+chefdequart+'</b> prend la fonction de Chef de Quart et <b class="textepersoadj">'+adjoint+'</b> prend celle d\'adjoint.</td><td class="button"><button class="editperso"><i class="icon-pencil"></i></button></td><td class="button"><button class="trashperso"><i class="icon-trash"></i></button></td></tr>').fadeIn('fast');
$('#tablemc').append(nouvelle_ligne);

この新しい行には、x-editable ライブラリで編集するためのボタンがあります。

$(document).on("click", ".editperso", function(g){
g.stopPropagation();
  var $CellParent = $(this).closest('td').prev().children('b');
  editperso2($CellParent); });

function editperso2(bCellToEdit) {
bCellToEdit.editable({
  mode: 'inline',
  inputclass: 'input-medium texteperso',
  type: 'text',
  success: function() {
    var cmsperso = $('.textepersocms').next('span').children('div').children('form').children('div').children('div').children('div').children('input.texteperso').val();
    var chefdequart = $('.textepersocdq').next('span').children('div').children('form').children('div').children('div').children('div').children('input.texteperso').val();
    var adjoint = $('.textepersoadj').next('span').children('div').children('form').children('div').children('div').children('div').children('input.texteperso').val();
    var cmsperso2 = $(this).closest('td').children('.textepersocms').html();
    var chefdequart2 = $(this).closest('td').children('.textepersocdq').html();
    var adjoint2 = $(this).closest('td').children('.textepersoadj').html();

    console.log(cmsperso);
    console.log(chefdequart);
    console.log(adjoint);
    console.log(cmsperso2);
    console.log(chefdequart2);
    console.log(adjoint2);

    $.ajax({
      type: "POST",
      url: "form/update/updateperso.php",
      async: false,
      data: { cmsperso: cmsperso, cmsperso2: cmsperso2, chefdequart: chefdequart, chefdequart2: chefdequart2, adjoint: adjoint, adjoint2: adjoint2 }
    });
  }
});}

このコードは を入力変数に変換します (adjoint、chefdequart、cmsperso は新しい値であり、adjoint2、chefdequart2、cmsperso2 は変更前の値です)。

最後に、mysql テーブルを更新する php ファイルがありますが、機能しません。

elseif (empty($_POST['cmsperso']) && !empty($_POST['chefdequart']) && !empty($_POST['adjoint'])) {

    if (isset($_POST['chefdequart']) && isset($_POST['chefdequart2']) && isset($_POST['adjoint']) && isset($_POST['adjoint2'])) {

        $chefdequart = $_POST['chefdequart'];
        $chefdequart2 = $_POST['chefdequart2'];
        $adjoint = $_POST['adjoint'];
        $adjoint2 = $_POST['adjoint2'];

        $pos1 = strcasecmp($adjoint, $adjoint2);
        $pos2 = strcasecmp($chefdequart, $chefdequart2);

        if ($pos1===0 && $pos2!==0) { 

            $updateperso4 = "UPDATE `Operations` SET `chefdequart`=\"$chefdequart\" WHERE `cmsperso`='' AND `chefdequart`=\"$chefdequart2\" AND `adjoint`=\"$adjoint2\"";

            if($updateperso4) {
                echo json_encode(array("status"=>"ok"));
            }
            else {
                echo json_encode(array("status"=>"error", "error"=>"une erreur est survenue..."));
            }

            mysql_query($updateperso4, $cnx) or die(mysql_error());
            mysql_close();

        }

        elseif ($pos1!==0 && $pos2===0) {

            $updateperso5 = "UPDATE `Operations n°` SET `adjoint`=\"$adjoint\" WHERE `cmsperso`='' AND `chefdequart`=\"$chefdequart2\" AND `adjoint`=\"$adjoint2\"";

            if($updateperso5) {
                echo json_encode(array("status"=>"ok"));
            }
            else {
                echo json_encode(array("status"=>"error", "error"=>"une erreur est survenue..."));
            }

            mysql_query($updateperso5, $cnx) or die(mysql_error());
            mysql_close();

        }

        else { 
            echo "Ouppsss !"; 
        }

    }
}

アップデートの 1 つを phpmyadmin に配置すると、アップデートが機能し、値が変更されますが、私のコードでは値は変更されません。

Chefdequartとadjointを挿入した後にchefdequartしようとすると、firebugはエラーを返さず、次のようになります: 火の虫

データは視覚的に変化しますが、phpmyadmin には変化がありません。

あなたが私を理解してくれることを願っています。ありがとうございます。

4

2 に答える 2

1

これで解決する問題

 if(cmsperso === undefined) { var cmsperso = $(this).closest('td').children('.textepersocms').html(); }
 if(chefdequart === undefined) { var chefdequart = $(this).closest('td').children('.textepersocdq').html(); }
 if(adjoint === undefined) { var adjoint = $(this).closest('td').children('.textepersoadj').html(); }

変数が未定義かどうかをテストし、必要な値を入力すると、ajax が値を返す

魔法です。ご協力いただきありがとうございます

于 2013-02-14T07:44:18.677 に答える
0

あなたのUPDATEクエリはあなたのように実行されていませんelseif-

elseif (empty($_POST['cmsperso']) && !empty($_POST['chefdequart']) && !empty($_POST['adjoint'])) {

そしてあなたifは -

if (isset($_POST['chefdequart']) && isset($_POST['chefdequart2']) && isset($_POST['adjoint']) && isset($_POST['adjoint2'])) {

どちらも が必要です$_POST['adjoint']が、Firebug のスクリーン ショットを見ると、投稿しているchefdequartのは 、chefdequart2、およびのみです。adjoint2

投稿したものとして$.ajax を確認する必要があります。6data:つのパラメーター ( cmsperso&を含むcmsperso2) が必要ですが、Firebug には 3 つしか表示されていません。

于 2013-02-14T05:21:38.090 に答える