You can use Form Express API to link the client UI and your server data model.
Form Express API helps to perform the next requests:
Method | URL | Description |
---|---|---|
GET | / | Get form data |
POST | / | Submit form data |
POST | /validation | Validate form data |
Specify a form model which must implement Form Model Interface can be an instance or a constructor so that the Form Express Api will be able to use the provided data model to perform client requests.
Parameters:
Type | Name | Description |
---|---|---|
FormModel | formModel | Required. The instance of a Form model |
Or:
Type | Name | Description |
---|---|---|
Function | getModel | Required. Function to be called with Express middleware’s req and res parameters returning a Form model instance. |
Specify a function to be called when the response is ready.
Parameters:
Type | Name | Description |
---|---|---|
Function | callback | Optional. Function to be called with the result. |
callback
s arguments:
Type | Name | Description |
---|---|---|
Any | err | Error caught from model methods |
Any | data | Result returned by model methods |
Creates an Express router object with middlewares performing requests specified above.
Pass a model instance to Express API:
Or use a constructor for that:
To interact with this API at front-end use Form XHR Model.
You can also customize your API with some additional methods, or perform a similar behaviour using other frameworks of course.