3214 Posts in 848 Topics by 810 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 882 Views |
-
How to have a controller action return ONLY raw data?

8 September 2010 at 5:18am
I want to have a jquery function use ajax to return only the raw data from a controller action. If I have an alert() statement in the onsuccess function of a $.post() call to alert the return data it spits out the entire html document. How can I only have it return an array of data?
-
Re: How to have a controller action return ONLY raw data?

8 September 2010 at 5:01pm
The easy no frills way is to do something like this..
// .. your controller function
echo "Some String";
die(); // or exit() or whatever to prevent loading SS templatesThe other option is to use renderWith() on that function and have a empty template or one which contains just the information you want to pass back.
| 882 Views | ||
|
Page:
1
|
Go to Top |


