我是Ruby的新手,我有一个问题。我试图让控制器调用一个模型类来查询MySQL数据库。
设置此方法的正确方法是什么?我试图不使用脚手架,以便我学会如何手工完成。
答案 0 :(得分:1)
class MyController < ApplicationController
def index
@post = Post.find(params[:id])
end
end
调用index时,你会发现数据库中的post等于paramaterer中给出的id(http:// localhost / my_controllers / id)