Views

Overview

In Sails, views are markup templates that are compiled on the server into HTML pages. In most cases, views are used as the response to an incoming HTTP request, e.g. to serve your home page.

Alternatively, a view can be compiled directly into an HTML string for use in your backend code (see sails.renderView().) For instance, you might use this approach to send HTML emails, or to build big XML strings for use with a legacy API.

Creating a view

By default, Sails is configured to use EJS (Embedded Javascript) as its view engine. The syntax for EJS is highly conventional- if you’ve worked with php, asp, erb, gsp, jsp, etc., you’ll immediately know what you’re doing.

If you prefer to use a different view engine, there are a multitude of options. Sails supports all of the view engines compatible with Express via Consolidate.

Views are defined in your app’s views/ folder by default, but like all of the default paths in Sails, they are configurable. If you don’t need to serve dynamic HTML pages at all (say, if you’re building an API for a mobile app), you can remove the directory from your app.

Compiling a view

Anywhere you can access the res object (i.e. a controller action, custom response, or policy), you can use res.view to compile one of your views, then send the resulting HTML down to the user.

You can also hook up a view directly to a route in your routes.js file. Just indicate the relative path to the view from your app’s views/ directory. For example:

  1. {
  2. 'get /': {
  3. view: 'homepage'
  4. },
  5. 'get /signup': {
  6. view: 'signupFlow/basicInfo'
  7. },
  8. 'get /signup/password': {
  9. view: 'signupFlow/chooseAPassword'
  10. },
  11. // and so on.
  12. }
What about single-page apps?

If you are building a web application for the browser, part (or all) of your navigation may take place on the client; i.e. instead of the browser fetching a new HTML page each time the user navigates around, the client-side code preloads some markup templates which are then rendered in the user’s browser without needing to hit the server again directly.

In this case, you have a couple of options for bootstrapping the single-page app:

  • Use a single view, e.g. views/publicSite.ejs. Advantages:
    • You can use the view engine in Sails to pass data from the server directly into the HTML that will be rendered on the client. This is an easy way to get stuff like user data to your client-side javascript, without having to send AJAX/WebSocket requests from the client.
  • Use a single HTML page in your assets folder , e.g. assets/index.html. Advantages:
    • Although you can’t pass server-side data directly to the client this way, this approach allows you to further decouple the client and server-side parts of your application.
    • Anything in your assets folder can be moved to a static CDN (like Cloudfront or CloudFlare), allowing you to take advantage of that provider’s geographically distributed data centers to get your content closer to your users.