0

Q1:在发送到服务器之前验证用户在 jQuery Handsontable 中输入的数据的最佳方法是什么?

我已阅读这篇文章 上传 jQuery Handsontable 输入

有没有集成解决方案?等集成到 jquery 验证插件,如果没有,使用 onbeforechange() 方法怎么样?

Q2:另外,我已经启动了一个100行的表,但是如果我使用下面的代码,用户可能只会输入50行:

$('#btnGo').click(function() { 
  var rowList = $("#example9grid").handsontable("getData"); 
  $('#simple').val(JSON.stringify(rowList)); 
  console.log(rowList); 
});​ 

rowList将返回 50 个数据行和 50 个空行。

如何删除所有空行?

4

3 回答 3

1

A1:感谢 Marcin 的回复,我已经通过使用以下代码解决了这个问题:

onBeforeChange: function (data) {
      for (var i = 0, ilen = data.length; i < ilen; i++) {
            if (data[i][0] > 0) { //if it is not first row
                if(data[i][1]==0){ //if it is the first column
                        //some validate logic here
            }else if(data[i][1]==1){//if it is the second column
                        //some validate logic here
                    }
            }
        }
      };

A2:我使用以下代码删除了空行:

rowList = $("#dataTable").handsontable("getData");
rowList = $.grep(rowList,function(array,index){
            ...write your logic here
});
于 2012-06-11T02:31:13.640 回答
0

试图抓住问题。如果您只是想在使用“getData”之前删除空行并将其发送到服务器,那么...只需遍历 DOM 并删除所有空行。

$('#btnGo').click(function() { 
  $('rowSelector:empty').each(function(){
    $(this).remove(); 
  });
  var rowList = $("#example9grid").handsontable("getData"); 
  $('#simple').val(JSON.stringify(rowList)); 
  console.log(rowList); 
});​
于 2012-06-09T06:23:16.940 回答
0

A1:在我看来,我会向数据服务器端发送$.ajax请求,然后在那里进行验证。

// your handsontable callback
    // i would use this callback
onChange : function(data){

    $.ajax({
        url : '/validate/',
        data : data,
        dataType : 'json',
        success : function(res){
            if(res.error){
                handleErrors(res.error);
            }else{
                successMsg(res);
            }
        }

    })


}

这样,您就可以在服务器端建立一堵墙,以防有人尝试手动添加自己的数据,而您无需重写验证系统。

还有一件事要注意最好将json数据发回,例如在php中它是这样的。

<?php
// do validating here
    // store if everything is good
    // send back error if thing are not
header('Cache-Control: no-cache, must-revalidate');
header('Content-type: application/json');
echo json_encode($callbackobj);
?>

这样,结果已经是 javascript 阅读的完美形式

A2:我会把它们留在那里,以便为新数据留出空间。如果您查看诸如 excel 或数字之类的程序,它们只会将表格留在那里。如果您以只读方式查看,我将使用您存储的数据重建数据。

于 2012-06-09T06:39:25.437 回答