web_response->include

Includes a file through the response object.

Target member

Signature

1web_response->include(path::string)

Includes a file through the response object.

web_response->include is called with member syntax on a receiver value. web_response->include belongs at the request or response boundary. Treat visitor input as untrusted, validate before use, and encode values before writing them into HTML.

Parameters

path
Required value of type string. Supply path positionally unless the signature shows a keyword form.

Examples

Basic call

1web_response->include('/includes/footer.lasso')
The example belongs near a request or response boundary; validate visitor input before trusting it.