我正在使用最新版本的 Rubymotion 构建一个 iOS 应用程序。我有一个表格视图,我想用来自远程 API 的数据填充。
我将控制器命名为:ProjectsController
我将模型命名为:项目
在控制器 viewDidLoad 中,我想从 API 获取项目列表。我在 Project 模型中创建了一个名为 load_projects 的静态方法。
def self.load_projects
BW::HTTP.get("#{URL}projects?id=25&project_id=24&access_token=#{TOKEN}") do |response|
result_data = BW::JSON.parse(response.body)
output = result_data["projects"]
output
end
end
这是我在控制器中的 viewDidLoad:
def viewDidLoad
super
@projects = Project.load_projects
self.navigationItem.title = "Projekt"
end
我在 viewDidLoad 中没有得到与在模型中相同的响应。在模型方法中,我得到了正确的响应数据,但在 viewDidLoad 中,我得到了一个返回的“元”对象。一个 BubbleWrap::HTTP::Query 对象。我究竟做错了什么?
更新一
我尝试像这样使用下面的第一个答案,但出现错误:
def tableView(tableView, cellForRowAtIndexPath:indexPath)
cellIdentifier = self.class.name
cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier) || begin
cell = UITableViewCell.alloc.initWithStyle(UITableViewCellStyleDefault, reuseIdentifier:cellIdentifier)
cell
end
project = @projects[indexPath.row]['project']['title']
cell.textLabel.text = project
cell
end
错误是:
projects_controller.rb:32:in `tableView:cellForRowAtIndexPath:': undefined method `[]' for nil:NilClass (NoMethodError)
2012-11-09 01:08:16.913 companyapp[44165:f803] *** Terminating app due to uncaught exception 'NoMethodError', reason: 'projects_controller.rb:32:in `tableView:cellForRowAtIndexPath:': undefined method `[]' for nil:NilClass (NoMethodError)
我可以在这里显示返回的数据而不会出错:
def load_data(data)
@projects ||= data
p @projects[0]['project']['title']
end