Most of the responses you will work with simply involve returning various data types / classes / objects in the controller method. For example, you may be used to returning a view.render()
object in the controller method. This will return a View
instance which Masonite will extract out the rendered html template from it.
Below is a list of all the responses you can return
You can simply return a string which will output the string to the browser:
This will set headers and content lengths similiar to a normal HTML response.
You can return an instance of a View
object which Masonite will then pull the HTML information that Jinja has rendered. This is the normal process of returning your templates. You can do so by type hinting the view class and using the render method:
Notice you can also pass in a dictionary as a second argument which will pass those variables to your Jinja templates.
There are a few ways to return JSON responses. The easiest way is to simply return a dictionary like this:
This will return a response with the appropriate JSON related headers.
Similiarly you can return a list:
If you are working with models then its pretty easy to return a model as a JSON response by simply returning a model. This is useful when working with single records:
This will return a response like this:
If you are working with collections you can return something similiar which will return a slightly different JSON response with several results:
Which will return a response like:
If you need to paginate a response you can return an instance of Paginator
. You can do so easily by using the paginate()
method:
The value you pass in to the paginate method is the page size or limit of results you want to return.
This will return a response like:
You can override the page size and page number by passing in the appropriate query inputs. You can change the page you are looking at by passing in a ?page=
input and you can change the amount of results per page by using the ?page_size=
input.
If you are building an API this might look like /api/users?page=2&page_size=5
. This will return 5 results on page 2 for this endpoint.
You can also return a few methods on the request class. These are mainly used for redirection.
For redirecting to a new route you can return the redirect()
method:
There are several different ways for redirecting like redirecting to a named route or redirecting back to the previous route. For a full list of request redirection methods read the Request Redirection docs.
The response class is what Masonite uses internally but you can explicit use it if you find the need to. A need might include setting a response in a middleware or a service provider where Masonite does not handle all the response converting for you. It is typically used to condense a lot of redundant logic down throughout the framework like getting the response ready, status codes, content lengths and content types.
Previously this needed to be individually set but now the response object abstracts a lot of the logic. You will likely never need to encounter this object during normal development but it is documented here if you need to use it similarly to how we use it in core.
We can set a JSON response by using the json()
method. This simply requires a dictionary:
This will set the Content-Type
, Content-Length
, status code and the actual response for you.
Keep in mind this is the same thing as doing:
Since Masonite uses a middleware that abstracts this logic.
The view()
method either takes a View
object or a string:
Status codes can be set in the controller methods by 1 of 2 ways. The first way is to use the response object like above but set a status=
parameter. Something like thihs:
The second way is to use a normal response but return a tuple: The above example might look something like this:
You can also use some very basic URL redirection using the response object:
Responsable classes are classes that are allowed to be returned in your controller methods. These classes simply need to inherit a Responsable
class and then contain a get_response
method.
Let's take a look at a simple hello world example:
This class can now be returned in a controller method
Masonite will check if the response is an instance of Responsable
and run the get_response
method. This will show "Hello world" to the browser. This is actually how Masonites view class and mail classes work so you can see how powerful this can be.
You can also return mailables. This is great if you want to debug what your emails will look like before you send them. You can do so by simply returning the mailable method of the mail class:
This will now show what the email will look like.
Sometimes you will want to return an image or a file like a PDF file. You can do with Masonite pretty easily by using the Download
class. Simply pass it path to a file and Masonite will take care of the rest like setting the correct headers and getting the file content
This will display the image or file in the browser. You can also force a download in 1 of 2 ways:
Lastly you can change the name of the image when it downloads: