duande1986 2014-02-27 17:49
浏览 33
已采纳

jQuery从datatables序列化到没有ajax的PHP数组

I have a table using Datatables. I have a setup pretty much like this link in the fact that I have form fields in the table and that they are submitted. I don't want to use ajax, I want to use the submit button.

This is part of my code:

$('#form').submit( function() {
    var sData = $('input', oTable.fnGetNodes()).serialize ();

    console.log(sData);
    $('#form-values').val(sData);

} );

So I'm taking the serialized data and I'm putting it in a hidden input box with the id #form-values. Once I submit, In the server side I can get the serialized data with $_POST['form-values'] but of course... the data is serialized... I would want that data in an array so I can analyze it and insert some of them in a database.

I tried doing unserialize($_POST['form-values']) but it gives me the error Notice: unserialize(): Error at offset 0 of 1098 bytes in...

My serialized data looks like:

comments%5B56%5D=&comments%5B35%5D=&comments%5B12%5D=&comments%5B32%5D=

But I would want it to be:

Array ( [comments] => Array ( [56] => [35] => [12] => [32] => 
  • 写回答

3条回答 默认 最新

  • dsvtnz6350 2014-02-27 17:55
    关注

    You can get just the atributes from a URL using parse_url()

    Once you have that you can use parse_str() to convert them to variables, it works with multidimensional arrays too!

        $str = "first=value&arr[]=foo+bar&arr[]=baz";
    
        parse_str($str, $output);
        echo $output['first'];  // value
        echo $output['arr'][0]; // foo bar
        echo $output['arr'][1]; // baz
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择
  • ¥15 部分网页页面无法显示!
  • ¥15 怎样解决power bi 中设置管理聚合,详细信息表和详细信息列显示灰色,而不能选择相应的内容呢?
  • ¥15 QTOF MSE数据分析
  • ¥15 平板录音机录音问题解决
  • ¥15 请问维特智能的安卓APP在手机上存储传感器数据后,如何找到它的存储路径?