我正在尝试从另一个站点检索JSON数据,然后解析它然后我收到错误:没有这样的文件或目录@ rb_sysopen - api.openweathermap.org/data/2.5/forecast/daily?q=Basingstoke&APPID = 17d7c464b1b3c40e4c48297d750a9010
我的代码:
<resources>
<style name="AppTheme" parent="android:Theme.Material.NoActionBar">
</style>
</resources>
答案 0 :(得分:3)
将http://
添加到request_uri
变量的开头:
<% request_uri = 'http://api.openweathermap.org/data/2.5/forecast/daily?q=' + @cityweather.city + "&APPID=17d7c464b1b3c40e4c48297d750a9010" %>