I’ve got search working in Rails with AAF.
term = params[:search][:term]
@results = MyModel.find_by_contents “#{term}*”
The problem is, let’s say that term is equal to “Title: Subtitle”. Then
nothing is found. Nothing is found when I try “Title: Subtitle” either.
Any tips?