我想在视图中显示数据。
类雇员 类BankAccount
答案 0 :(得分:-1)
要在视图上显示数据,首先需要从数据库获取实例数据:
@employee = Employee.last //gives you data for the last employee
由于您需要在视图中显示它,因此需要一个实例变量,以便可以在视图中访问它。
现在,在视图中,使用以下命令访问特定数据:
@employee.name # employee specific data
@employee.bank_account.value # access associated record
希望它能回答问题。