我是Rho-Mobile的新手,我想知道我是否可以使用http-client以及如何使用?
我用Google搜索了Rho-Mobile的API,但不幸的是,我找不到任何有用的信息。
答案 0 :(得分:0)
Rhomobile有一个AsynchHttp API。 Rhomobile Docs有一些如何使用它的例子here。或者,您可以使用Ruby net / http 库。它解释了here,如何使用 net / http 作为Rhodes应用程序的扩展。
答案 1 :(得分:0)
将Rhodes扩展为使用大多数Ruby库很容易:http://docs.rhomobile.com/rhodes/extensions
但当然有所提到的内置解决方案:http://docs.rhomobile.com/rhodes/connect-to-web-services
答案 2 :(得分:0)
Rho::AsyncHttp.get(
:url => "http://www.yourSite.com",
:headers => {"Cookie" => cookie},
:callback => (url_for :action => :httpget_callback)
)