play framework2学习之旅<2.1>Actions, Controllers and Results

来源:互联网 发布:js除以100 编辑:程序博客网 时间:2024/05/24 15:38

Actions, Controllers and Results

What is an Action?

Most of the requests received by a Play application are handled by an Action.

An action is basically a Java method that processes the request parameters, and produces a result to be sent to the client.

public static Result index() {  return ok("Got request " + request() + "!");}

An action returns a play.mvc.Result value, representing the HTTP response to send to the web client. In this example ok constructs a 200 OK response containing atext/plain response body.

我的认识:客户端-->发起请求(此请求带有一定的参数)--->由action方法接受并处理请求参数--->将处理结果以play.mvc.Result形式返回

Controllers

A controller is nothing more than a class extending play.mvc.Controller that groups several action methods.

The simplest syntax for defining an action is astaticmethod with no parameters thatreturns a Result value:

public static Result index() {  return ok("It works!");}

An action method can also have parameters:

public static Result index(String name) {  return ok("Hello" + name);}

These parameters will be resolved by the Router and will be filled with values from the request URL. The parameter values can be extracted from either the URL path or the URL query string.

我的认识:controllers就是一个继承自play.mvc.Controller的类,起一个中介作用,它就是action的容身之处,不过要注意所有的方法都是静态的!

Results

Let’s start with simple results: an HTTP result with a status code, a set of HTTP headers and a body to be sent to the web client.

These results are defined by play.mvc.Result, and the play.mvc.Results class provides several helpers to produce standard HTTP results, such as the ok method we used in the previous section:

public static Result index() {  return ok("Hello world!");}

Here are several examples that create various results:

Result ok = ok("Hello world!");Result notFound = notFound();Result pageNotFound = notFound("<h1>Page not found</h1>").as("text/html");Result badRequest = badRequest(views.html.form.render(formWithErrors));Result oops = internalServerError("Oops");Result anyStatus = status(488, "Strange response type");

All of these helpers can be found in the play.mvc.Results class.

我的认识:只要记住最后一句话即可,所有的这些都可以在play.mvc.Results class中查到,到时候查API即可!


Redirects are simple results too

Redirecting the browser to a new URL is just another kind of simple result. However, these result types don’t have a response body.

There are several helpers available to create redirect results:

public static Result index() {  return redirect("/user/home");}

The default is to use a 303 SEE_OTHER response type, but you can also specify a more specific status code:

public static Result index() {  return temporaryRedirect("/user/home");}

关于重定向,只要记住这两个方法即可,但要记得default是temporaryRedirect;

public static Result temporaryRedirect(java.lang.String url)


原创粉丝点击