各位,如果我有两个 model,一个 user,一个 organ,但是我需要封装成一个对象,这个对象有@user.name和 organ.name,我该怎么弄
其实你甚至可以这样: o = new Object o.name = @user.name o.org = @org.name 简单理解和 js 有点像。
#9 楼 @heliang7 ---------ruby------------ #encoding: utf-8 class UnExamineOrg def initialize(orgName,orgType,orgSize,description,date,examineInfo) @orgName = orgName #组织机构名 @orgType = orgType #组织类型 @orgSize = orgSize #组织规模 @description = description #申请描述 @date = date #申请日期 @examineInfo = examineInfo #审核备注 end end 我这代码有问题吗