如何从facebook检索照片图像。如何在palm pre中调用.net webservices?
发布于 2010-06-26 02:29:13
为了将图像或其他内容上传到设备上,您需要寻找Download Manager
为了调用web服务,您可以使用XMLHTTPRequest对象的典型Javascript AJAX方法。您目前还可以选择使用当前包含在WebOS中的原型框架的包装器函数。Prototype不能保证永远存在,但是如果需要,您可以将库与您的应用程序一起分发。
对于Prototype,您将使用Ajax对象。
var request = new Ajax.Request("http://myweb.com/servicename", {
method: 'get',
evalJSON: 'false',
onSuccess: this.requestSuccess.bind(this),
onFailure: this.requestFailure.bind(this)
});Ajax.Response将为您提供访问数据的权限。有关更多信息,请查看Prototype Framework文档。
https://stackoverflow.com/questions/3116603
复制相似问题