Skip to content

Miscellaneous

renderText()

renderText() — returns any

Instructs the controller to render specified text when it’s finished processing the action.

NameTypeRequiredDefaultDescription
textanyyesThe text to be rendered.
// Render just the text "Done!" to the client
renderText("Done!");

// Render serialized product data to the client
products = model("product").findAll();
renderText(SerializeJson(products));