目前附件是根据attachment_file_name
,tags
和搜索的employee_id
,我也想根据员工姓名搜索,我该怎么做呢?必须使用两个模型。
- 员工- 有员工姓名
- 课程计划附件- 包含员工的 ID。
代码部分。
def search_ajax
@attachments = LessonplanAttachment.find(:all,
:conditions => ["attachment_file_name LIKE ? OR tags LIKE ? OR employee_id = ?",
"#{params[:query]}%","#{params[:query]}%",params[:query]])
end