CSC/ECE 517 Fall 2012/ch1b 1w64 nn: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 7: Line 7:
===MVC responsibilities===
===MVC responsibilities===
#Model
#Model
#Controller
#Controller
<pre>
<syntaxhighlight lang="ruby">
def show
  @movie = Movie.find(params[:id])
end
</syntaxhighlight>
</pre>
#View
#View
===URI helpers===
===URI helpers===
===References===
===References===

Revision as of 00:26, 29 September 2012

SaaS - 3.12 Controller and views

Introduction

Adding new action in Rails

MVC responsibilities

  1. Model
  1. Controller
<syntaxhighlight lang="ruby">
def show
  @movie = Movie.find(params[:id])
end
</syntaxhighlight>
  1. View

URI helpers

References