Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将数组的索引更改为从 1 而不是 0 开始。我正在尝试从站点 (JSON) 获取新闻并在解析后:
@news = JSON.parse(Net::HTTP.get(URI.parse('http://api.site.com/news?format=json')))
但是要查看单个新闻标题,我必须@news["items"][0]为第一个链接的标题做。是否有可能改变这种行为,所以当我这样做时,@news["items"][1]它会显示第一个链接的标题?
@news["items"][0]
@news["items"][1]
您应该拦截用户输入并调整输入的值以映射到正确的数组元素。通常,您应该始终验证用户输入并检查它是否有意义。