forked from xdite/rails-101
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchapter-02-1-3.txt
55 lines (31 loc) · 1.04 KB
/
chapter-02-1-3.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{::pagebreak :/}
## Ch 2.1.3 建立 Posts Controller 裡的 create
在 `app/controllers/posts_controller.rb` 加入 `create` 這個 action
~~~~~~~~
def create
@group = Group.find(params[:group_id])
@post = @group.posts.new(post_params)
if @post.save
redirect_to group_path(@group)
else
render :new
end
end
private
def post_params
params.require(:post).permit(:content)
end
~~~~~~~~
不過此時,我們發現 Post 其實也需要被驗證。如果一個 Post 沒有 content,應該也算是不合法的 post?
我們應該要限制沒有輸入 content 的 post,必須要退回到 `new` 這個表單。
修改 `app/models/post.rb`,限制 post 一定要有內容
~~~~~~~~
class Post < ActiveRecord::Base
belongs_to :group
validates :content, :presence => true
end
~~~~~~~~
{::pagebreak :/}
### 解說
Rails 的 ORM 內建一系列 Validation 的 API,可以幫助 Developer 快速驗證資料的類型與格式。
<http://edgeguides.rubyonrails.org/active_record_validations.html>