如何在 rhomobile 应用程序中显示 JSON 数据而不将其保存到数据库?
谢谢
要显示 JSON 数据,最好的方法是我在这里找到的
使用 AsyncHttp
def index
Rho::AsyncHttp.get(
:url => "http://someurlx.com",
:callback => :parse)
end
def parse
body= @params['body']
@@json_data = Rho::JSON.parse(body)
end
试试这个来获取没有回调 url 的 json
@response=Rho::AsyncHttp.get(
:url => "http://rhostore.herokuapp.com/customers.json"
)
json_parse=JSON.parse(@response)