Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 773 Bytes

File metadata and controls

19 lines (11 loc) · 773 Bytes

< Develop

Models

In most of our applications we are concerned about how to access data on the server and display that on a Client side interface.

Both our CanJS client side framework and our SailsJS server side framework offer Models to help us interact with our data.

In this section we will talk about how to implement Models on both the Server and Client and then tie them together.

  1. create the server side Model
  2. test the server side model
  3. test their REST interface
  4. update the Client side Model

< Develop
Next: create the server side Model >