View executes and write the result of a template file to the writer. Use context.View to render templates to the client instead. Returns an error on failure, otherwise nil.
(writer io.Writer, filename string, layout string, bindingData interface{})
| 45 | // Use context.View to render templates to the client instead. |
| 46 | // Returns an error on failure, otherwise nil. |
| 47 | View(writer io.Writer, filename string, layout string, bindingData interface{}) error |
| 48 | |
| 49 | // GetContextPool returns the Iris sync.Pool which holds the contexts values. |
| 50 | // Iris automatically releases the request context, so you don't have to use it. |
no outgoing calls
no test coverage detected