Controller can send data to view as argument in the render method. How would the view send data to the controller?
Edit: Let me clarify it a bit.
Application.showQuestion(Question q){
render(q);
}
showQuestion.html displays the question 'q' and has a text box for entering the answer 'a' to 'q'. The submit button on the form calls the method createAnswer. I want to pass in not only the answer 'a', but also the question 'q'. Would createAnswer(q, a) accomplish the same? My objective is to do:
a.question = q; q.addAnswer(a);