In the HTML5 Announcement, there is one section mentioned that:
“If your app makes calls to web servers, using API’s like network.request(), because of JavaScript cross-domain scripting rules, you can’t directly call REST type APIs. Instead you will need to write a local web script on the same domain that will make your REST API calls and then echo the returned data back to network.request().”
So, is there any sample or example code of using network.request in HTML5 build in this way above ? Such “write a local web script” and then how to integrate the local web script with network.request?