从AngularJS POST收到的数据类型?

时间:2017-11-07 09:20:24

标签: json spring-mvc

我从AngularJS POST发送json对象

(json['name']="Name";json['lastName']="LastNAme");

在Spring mvc Controller中我收到了这条消息

"name=Name&lastName=LastName"

我不知道此消息的类型,无论是JSON还是String以及如何解析为java对象。

1 个答案:

答案 0 :(得分:0)

创建一个表示JSON对象的模型。

public class Person{
   private String name;
   private String lastname;
   //...Setters + Getters + default constructor
}

然后在你的控制器处理程序中:

@Controller
//Mapping here
public class YourController{

  @PostMapping
  public void getPerson(@RequestBody Person person){
    //process here
  }

}