suchen

Heim  >  Fragen und Antworten  >  Hauptteil

php如何解析jquery serialize 提交后的数据

$data ="realname=lemon&numid=123"
怎样转换成
$data= array('realname'=>'lemon'
,numid=>'123',)

天蓬老师天蓬老师2816 Tage vor422

Antworte allen(3)Ich werde antworten

  • 黄舟

    黄舟2017-05-16 13:03:19

    用ajax post到后台的数据直接为数组形式
    $.ajax({
    type: "POST",
    url: "some.php",
    data: "name=John&location=Boston",
    success: function(msg){

     alert( "Data Saved: " + msg );

    }
    });

    Antwort
    0
  • 巴扎黑

    巴扎黑2017-05-16 13:03:19

    不用转啊,直接接收就是啊

    Antwort
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-16 13:03:19

    不用转,直接打印出来print_r($_POST),看到的就是这个格式的数据了

    Antwort
    0
  • StornierenAntwort