Development Tip: Adding Custom Logic to REST API Invocation
This blog post shows how to add a custom logic to a REST API invocation for jQuery Mobile apps.
You may often need to modify data for a services request or a services response. You may want to launch a dedicated JavaScript function to do this. This is useful when you need to rewrite the response data with filtered/edited values, instead of doing this each time for each mapping. For example, your service response has an unneeded first value that you want to remove from the response:
- Add new
Run JavaScript
action forSuccess
event of your datasource. - Using the drag and drop, move this action to the very beginning, so the
Mapping
action will be right to theRun JavaScript
. This way, it’s guaranteed that the JavaScript code will be executed before the mapping. - Click on
Run JavaScript
action and write your code. You have adata
parameter in this JavaScript function – that is your response value. - Write your custom logic to modify the response data. For example, to remove the first item of the response array (works only for arrays, not for JSON objects) use the following code:
data.splice(0, 1);
Read more about Mapping in jQuery Mobile projects here and make sure to check out all of our mobile development tips.
Do you want to build apps fast? Start developing with our trial plan!