class Project < ActiveRecord::Base has_many :tasks def self.all_names find(:all).collect(&:name) end end 一个&符号后面跟着一个名字叫做to_proc,是rails对ruby的一点功能补充。
本文共 201 字,大约阅读时间需要 1 分钟。
class Project < ActiveRecord::Base has_many :tasks def self.all_names find(:all).collect(&:name) end end 一个&符号后面跟着一个名字叫做to_proc,是rails对ruby的一点功能补充。
转载于:https://www.cnblogs.com/JackyKun/p/4876120.html