请原谅我的noob问题。我是ruby和rails的新手,需要一些帮助来理解我在代码中遇到的attr_accessor
create_table "pets", force: :cascade do |t|
t.string "name"
t.string "colour"
t.string "owner_name"
t.text "identifying_characteristics"
t.text "special_instructions"
t.datetime "created_at"
t.datetime "updated_at"
t.string "email"
t.string "password"
end
模型
class Pet < ActiveRecord::Base
has_many :pet_photos
cattr_accessor :form_steps do
%w(identity characteristics instructions)
end
attr_accessor :form_step
validates :email, presence: true
validates :name, :owner_name, presence: true, if: -> { required_for_step?(:identity) }
validates :identifying_characteristics, :colour, presence: true, if: -> { required_for_step?(:characteristics) }
validates :special_instructions, presence: true, if: -> { required_for_step?(:instructions) }
def required_for_step?(step)
return true if form_step.nil?
return true if self.form_steps.index(step.to_s) <= self.form_steps.index(form_step)
end
end
和
class Pet::StepsController < ApplicationController
include Wicked::Wizard
steps *Pet.form_steps
def show
@pet = Pet.find(params[:pet_id])
render_wizard
end
def update
@pet = Pet.find(params[:pet_id])
@pet.update(pet_params(step))
if params[:images]
params[:images].each do |image|
@pet.pet_photos.create(image: image)
end
end
render_wizard @pet
end
private
def pet_params(step)
permitted_attributes = case step
when "identity"
[:name, :owner_name]
when "characteristics"
[:colour, :identifying_characteristics]
when "instructions"
[:special_instructions]
end
params.require(:pet).permit(permitted_attributes).merge(form_step: step)
end
end
路由
PetThing::Application.routes.draw do
resources :pets, only: [:new, :create, :index, :destroy] do
resources :steps, only: [:show, :update], controller: 'pet/steps'
end
root to: 'pets#index'
1)我对attr_accessor
只知道的是,它只不过是一个对象的getter / setter。我没有form_step
作为属性我的宠物模型(宠物表)。但在模型中,有attr_accessor :form_step
。如何生成getter / setter到:form_step
?
2) :form_step
是Pet类的对象吗?
我并不完全理解Rails模型类中attr_accessor
方法的用法。
3)请向我解释一下我必须为模型属性(宠物表属性或字段)生成getter / setter的方案
例如:attr_accessor :name
attr_accessor :colour
..等等
我们何时将attr_accessor
用于模型属性或字段?
答案 0 :(得分:4)
让我们从OOP开始,基本上class
是定义其实例(即对象)的属性和行为的模板。
rails模型也是一个ruby类。其属性由attr_accessor
定义,行为由static and instance methods
定义。
考虑一个班级with attr_accessor
class Animal
//defines animal properties
attr_accessor :legs
//defines animal behavior
def talk
end
end
和without attr_accessor
class Animal
//defines animal properties
//getter
def legs
@legs
end
//setter
def legs=(value)
@legs = value
end
//defines animal behavior
def talk
end
end
两种表示完全相同。 attr_accessor
为我们自动添加getter和setter,让开发人员的生活更轻松。
让我们回答你的问题
Ruby attr_accessor
会自动为您添加这些内容,如前所述。
form_step
其属性为Pet class
,可以petObj.form_step
访问。
如果表与Model关联/映射,那么您不必将表中的列定义为attr_accessor
,Rails会自动为您服务。如果表格中不存在字段或属性,则需要在attr_accessor
中手动将其定义为Model
。
我希望这能回答你的问题。
答案 1 :(得分:1)
部分Rails的神奇之处在于,当你有一个Pet类和一个表宠物时,你可以免费获得表中所有列的访问器。就像你已经为所有人宣布#form_step
一样,只有你不需要。
在您的示例中,表中未创建attr_accessor
。但它是使用Pet.new.form_step = 5
声明的。它就像普通的老红宝石一样工作。这会给你一个getter / setter(回答你的Q1)。
这是Pet类的实例方法。您可以在Pet对象上调用它,例如#form_step
(回答Q2)。
但是你不能将你分配给{{1}}的任何值保存到db。因此,Q3的答案是,当您需要在对象之间传递一些消息(即调用方法)时,通常会这样做,但是您不需要将它们持久化到db。