Handsontable:数据不会返回到php文件

时间:2015-06-08 12:32:31

标签: javascript jquery ajax handsontable

我是法国人,请原谅我的英语:) 我检查了很多主题。有些似乎是同样的问题,但它仍然无法正常工作。我也是javascript的初学者。

所以,这是我的代码: `

$(document).ready(function () {

var container = document.getElementById('Grille_competences');

var headerRenderer = function (instance, td, row, col, prop, value,
cellProperties) {
Handsontable.renderers.TextRenderer.apply(this, arguments);
td.style.fontWeight = 'bold';
td.style.textAlign = 'center';
td.style.backgroundColor = '#B0C4DE';
};

//Initialisation des données de la grille.
var data = [["Compétences","Description","Code",""],
        ["", "", "",""],
        ["","", "",""],
        ["","", "",""],
        ["","", "",""],
        ["","", "",""]];

//Création de la grille
hot = new Handsontable(container, {
data: data,
height: 800,
width: 1183,
colWidths: [35,200,25,80],
manualRowResize: true,
colHeaders: true,
rowHeaders: true,
mergeCells: true,
stretchH: 'all',
columnSorting: true,
contextMenu: true,    
contextMenuCopyPaste: {
  swfPath: './zeroclipboard/dist/ZeroClipboard.swf'
},


//Fonctionnalités lors d'un clic droit dans la grille.

 contextMenu: {    

   items: {
    "row_above": {
        name: 'Insérer ligne au dessus',
      disabled: function () {            
        return hot.getSelected()[0] === 0;
      }
    },
    "row_below": {
        name: 'Insérer ligne en dessous',
        disabled: function() {            
        return hot.getSelected()[0] === 0;
    }
  },
    "hsep1": "---------",
    "col_left": {
        name: 'Insérer colonne à gauche',
        disabled: function () {
          return hot.getSelected()[0] === 0;
        }
    },
    "col_right": {
        name: 'Insérer colonne à droite',
        disabled: function() {
          return hot.getSelected()[0] === 0;
        }
    },
    "hsep2": "---------",
    "remove_row": {
      name: 'Supprimer la ligne',
      disabled: function () {
        return hot.getSelected()[0] === 0;
      }
    },

    "remove_col": {
      name: 'Supprimer la colonne',
      disabled: function () {
        return hot.getSelected()[0] === 0;
      }
    },
    "hsep3": "---------",
    "copy": {
      name:'Copier',
      disabled: function () {
        return hot.getSelected()[0] === 0;
      }
    },
    "paste": {
      name: 'Coller',
      disabled: function(){
        return hot.getSelected()[0] === 0;
      }
    },
    "hsep4": "---------",
    "undo": {
      name:'Précédent',
      disabled: function(){
        return hot.getSelected()[0] === 0;
      }
    },
    "redo": {
      name: 'Suivant',
      disabled: function(){
        return hot.getSelected()[0] === 0;
      }
    },
    "hsep5": "---------",
    "make_read_only": {
      name: 'Lecture seule',
      disabled: function() {
        return hot.getSelected()[0] === 0;
      }
    },
    "alignment": {
      name: 'Alignement du texte',
      disabled: function () {
        return hot.getSelected()[0] === 0;        
      }          
    },
    "mergeCells": {
      name: 'Fusionner les cellules',
      disabled: function () {
        return hot.getSelected()[0] === 0;
      }
    },


    },
},


//Entetes de la grille en lecture seule. 
cells: function(row, col, prop) {
var cellProperties = {};
if(row===0){
cellProperties.renderer = headerRenderer;
}   
if(row === 0 && col <3){
       cellProperties.readOnly = true;
       }
return cellProperties;
}
});

//Lors d'un clic sur le bouton valider, transmission des données de la grille.


});

document.getElementById('save').onclick=function () {

            $.ajax({
            url: "testGetData.php",
            dataType: 'json',
            data: {'data':hot.getData()}, //retourne les données des cellules
            type: 'GET',
            success: function (data) {
                alert(data);
            },



        });
            document.location.href='testGetData.php';
    };

`

这是testGetData.php的代码:

<?php

foreach($_GET['data'] as $value)
    echo $value;
?>

问题是testGetData.php似乎没有收到$ _GET ['data']。 我在论坛或Handsontable的doc上尝试了很多不同的东西。 我认为原因是范围,但我做了同样的例子(至少我相信^^)。

你能帮帮我吗?我不明白什么是错的。我需要重新审视我的代码。

1 个答案:

答案 0 :(得分:0)

问题是与hansontable无关,但使用jQuery ajax方法发送数据的方式:您指定了dataType: 'json' 但处理。 php文件返回纯文本格式。

你应该先改变两件事,首先是你的.html文件:

document.getElementById('save').onclick=function () { ... }函数替换为:

$('#save').click(function(){
  $.ajax({
    url: "testGetData.php",
    dataType: 'json',
    data: {data: hot.getData() }, 
    type: 'GET',
    success: function (retobj) { alert(JSON.stringify(retobj)); }
  });  
}

(包括jQuery库有什么意义,如果你不使用它......)里面的东西或多或少没有改变,虽然我把success()函数改变了一点点。它会将返回的JavaScript对象retobj重新格式化为JSON格式,这样您就可以看到它的所有元素。关于使用ajax()的jQuery dataType:'json'方法的聪明之处在于,.php脚本返回的数据将作为JavaScript对象显示在success()函数中,而您无需执行任何操作!

其次 - 最重要的事情 - 在.php文件中:

为了向success()函数提供所需的json格式字符串,testGetData.php脚本需要json格式返回某些数据。最简单的方法是使用 php函数json_encode()

<?php
echo json_encode($_REQUEST);
?>

假设hot.getData()提供了类似这样的数组:

data= [[0,1,2,3],
       [100,101,102,103],
       [200,201,202,203]];

然后,在点击#save - 按钮后,alert函数将返回以下字符串(我测试了它 - 尽管没有动手):

{"data":[["0","1","2","3"],["100","101","102","103"],["200","201","202","203"]]}