I have followed the build a basic RSS app tutorial and I can make a page receive the rss resource. My questions is that whether I can make a function in my app and allow users to add more RSS resource as RSS reader?
Please advice
I have followed the build a basic RSS app tutorial and I can make a page receive the rss resource. My questions is that whether I can make a function in my app and allow users to add more RSS resource as RSS reader?
Please advice
anyone can offer me some hints?
Hi AC,
Yes - you can dynamicaly specify all service request parameters when invoke service datasource..
Here is a code example:
pre
//Where: "dogsList2" is your service datasource name.
dogsList2.execute({
//Specify "url" to the service.
restservice1.execute({url: "http://google.com/"})
//Specify url string parameters. (works in all HTTP methods)
parameters: {"www": "aa"}
})
/pre
Regards.