Back
renderText()
Instructs the controller to render specified text when it's finished processing the action.
// Render just the text "Done!" to the client
renderText("Done!");
// Render serialized product data to the client
products = model("product").findAll();
renderText(SerializeJson(products));
Copied!