Post 方法不适用于 Play 2.5 中的 Class 对象
Post method not working with Class Object in Play 2.5
我尝试从 PostMan 调用 Post 方法但无法调用。
控制器文件:
public class UserController extends Controller{
public Result getAll() {
List<User> users = new ArrayList<User>();
users.add(new User("Vinit", "vinitsolanki@yahoo.com", 25));
users.add(new User("Jaimin", "jaimin@yahoo.com", 25));
return ok(Json.toJson(users));
}
public Result get(Long id) {
User user = new User();
user.setId(id);
user.setName("Vinit");
user.setEmail("vinitsolanki@yahoo.com");
user.setAge(25);
return ok(Json.toJson(user));
}
public Result create(User user){
return ok(Json.toJson(user));
}
}
路由文件:
#User
#Method.Type url mapping with method
GET /user controllers.UserController.getAll
GET /user/:id controllers.UserController.get(id: Long)
POST /user controllers.UserController.create
get 方法 /url
和 /user/:id
都工作正常,但我对 post /user
有点困惑。我尝试了文件中的代码,但出现了上述错误。
missing arguments for method create in class UserController;
follow this method with `_' if you want to treat it as a partially applied function
基本上有两种方法可以做到这一点。
您可以使用 默认 body 解析器(这是您在评论中提到的方式):
public Result create() {
JsonNode json = request().body().asJson();
User user = Json.fromJson(json, User.class);
return ok(Json.toJson(user));
}
第二种方法是使用显式body解析器:
@BodyParser.Of(BodyParser.Json.class)
public Result create() {
RequestBody body = request().body();
User user = // some logic here
return ok(body.asJson());
}
奖励: 而不是 BodyParser.Json
你可以使用 BodyParser.TolerantJson
:与 Json 相同,但不验证 Content-Type header 是 JSON.
有关更多信息,您可以查看 Play documentation regarding body parsers
我尝试从 PostMan 调用 Post 方法但无法调用。
控制器文件:
public class UserController extends Controller{
public Result getAll() {
List<User> users = new ArrayList<User>();
users.add(new User("Vinit", "vinitsolanki@yahoo.com", 25));
users.add(new User("Jaimin", "jaimin@yahoo.com", 25));
return ok(Json.toJson(users));
}
public Result get(Long id) {
User user = new User();
user.setId(id);
user.setName("Vinit");
user.setEmail("vinitsolanki@yahoo.com");
user.setAge(25);
return ok(Json.toJson(user));
}
public Result create(User user){
return ok(Json.toJson(user));
}
}
路由文件:
#User
#Method.Type url mapping with method
GET /user controllers.UserController.getAll
GET /user/:id controllers.UserController.get(id: Long)
POST /user controllers.UserController.create
get 方法 /url
和 /user/:id
都工作正常,但我对 post /user
有点困惑。我尝试了文件中的代码,但出现了上述错误。
missing arguments for method create in class UserController;
follow this method with `_' if you want to treat it as a partially applied function
基本上有两种方法可以做到这一点。
您可以使用 默认 body 解析器(这是您在评论中提到的方式):
public Result create() {
JsonNode json = request().body().asJson();
User user = Json.fromJson(json, User.class);
return ok(Json.toJson(user));
}
第二种方法是使用显式body解析器:
@BodyParser.Of(BodyParser.Json.class)
public Result create() {
RequestBody body = request().body();
User user = // some logic here
return ok(body.asJson());
}
奖励: 而不是 BodyParser.Json
你可以使用 BodyParser.TolerantJson
:与 Json 相同,但不验证 Content-Type header 是 JSON.
有关更多信息,您可以查看 Play documentation regarding body parsers