CSC/ECE 517 Fall 2012/ch1b 1w64 nn: Difference between revisions
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
#Controller | #Controller | ||
<syntaxhighlight lang="ruby"> | <syntaxhighlight lang="ruby"> | ||
def show | def show | ||
Line 15: | Line 15: | ||
end | end | ||
</syntaxhighlight> | </syntaxhighlight> | ||
#View | #View | ||
===URI helpers=== | ===URI helpers=== | ||
===References=== | ===References=== |
Revision as of 00:27, 29 September 2012
SaaS - 3.12 Controller and views
Introduction
Adding new action in Rails
MVC responsibilities
- Model
- Controller
def show
@movie = Movie.find(params[:id])
end
- View