Return to v1.4.5 docs

renderText()



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

Name Type Required Default Description
text any Yes The 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));