欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js 传一个 json对象 给 php 后台

程序员文章站 2022-06-13 21:03:16
...

前台

 var arr =  [
          {
            sc_name : sc_name,
            sc_zjs : sc_zjs,
            sc_cgs : sc_cgs,
            sc_labos : sc_labos,
            sc_field : sc_field,
            sc_info : sc_info,
            sc_cg : sc_cg,
            sc_expert : sc_expert,
            sc_institute : sc_institute
          }
        ];

        var JsonData = JSON.stringify(arr);
        console.log(JsonData);
        // console.log(arr);

        $.ajax({
            type: 'POST',
            url:  "admin/school/add",
            contentType :"application/json",      // 很重要
            data: JsonData,
            dataType: 'json',
            success: function(data){
                if (data.status == 1) {
                    alert("编辑成功");
                    // window.location.href="admin_index";  // 跳转到后台主页
                } else {
                    // alert(222);
                    alert("编辑失败");
                }
            }
        });

php 后台

接收原始数据流

$data = file_get_contents("php://input");

$data = json_decode($data);
相关标签: js