你把  processData: false,和contentType: 'application/json;charset=utf-8', 属性去掉,后台用json反序列化一下,因为model是object类型的,所以先转化一下,参考代码如下:        public ActionResult SaveBook1Data(object model1, object model2)
        {
            string[] arrModel1 = model1 as string[]; 
            People people= model1 as People ;
            people= JsonConvert.DeserializeObject<People >(arrModel1[0].ToString());
        }