2023-08-31 10:50AM
模糊搜索:
@articles = @articles.where("title like ?", "%#{params[:title]}%") if params[:title].present?
精确搜索:
@articles = @articles.where(' title = ? ', params[:title]) if params[:title].present?
@articles = @articles.where(title: params[:title]) if params[:title].present?
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论