I am trying to make simple webboard application. In my question/show view, I have get method to link for action to answer_controller. But it seems not link to the answer view. The error is Sinatra does not know this path. I want to create the path from question/show.erb view to answer/new.erb via submit answer button. What should I do?
question_controller (Controller folder)
get '/questions/:id/show' do
@question = Question.find_by(id: params[:id])
erb :'question/show'
end
question/show (View folder)
<form method="get" controller="answers" action="/answers/question/<%[email protected]%>/new">
<input type=submit value="Answer"></form>
answer_controller (Controller folder)
get 'answers/question/:q_id/new' do
erb :'answer/new'
end
You just need the leading slash in the url of your answer route: