When attempting to transform my JQuery autocomplete component into a rails form helper, I keep seeing "ArgumentError in Languages#index". I think the errors related to my @question_query variable being null, according to Stack Overflow
Code below:
(View) Application
<%= form_for @question_query do |f| %>
When attempting to transform my JQuery autocomplete component into a rails form helper, I keep seeing "ArgumentError in Languages#index". I think the errors related to my @question_query variable being null, according to Stack Overflow
Code below:
(View) Application <%= form_for @question_query do |f| %>
(Controllers) Languages
(Controllers) Search
class SearchController < ApplicationController
end