skip to main
|
skip to sidebar
memo temp
2009年1月12日 星期一
some tips, add_to_base, save_with_validation, verify
save_with_validation(perform_validation = true)
The validation process on save can be skipped by passing false. The regular Base#save method is replaced with this when the validations module is mixed in, which it is by default
errors.add_to_base
http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/e045ec1dead1ff06
The "save" and "valid?" methods call errors.clear
before running, which was dumping the errors I had added.
Should have thought to put it in the model anyway, it is business
logic after all. This works:
def validate
if items.empty?
errors.add_to_base("Must select at least one item.")
end
end
http://api.rubyonrails.org/classes/ActionController/Verification/ClassMethods.html#M000353
verify :params => "post", :session => "post", "flash" => "note",
:only => :update_post,
:add_flash => { "alert" => "Failed to create your message" },
:redirect_to => :category_url
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
state chart
eb
關於我自己
Lake
檢視我的完整簡介
pie chart
網誌存檔
►
2010
(1)
►
11月
(1)
▼
2009
(26)
▼
1月
(26)
Migrations in Rails 2.1
Non Active Record Model
Going Back
Helpers Outside Views
JSON
javascript tips
改變 iframe 的 source
javascript in browser tips
cookies 設定
javascript在網頁頁面加載時的執行順序
ruby gzip, stringio
iframe 之間的互動
textarea 點選自動複製, copy
parent document
get,submit
activerecord, query cache
CSRF (Cross-Site Request Forgery) & InvalidAuthen...
some tips, add_to_base, save_with_validation, verify
Some cgi memo
javascript escape html
ruby & javascript url encode
rails 辨識brower
Some good tips
字串 String 一些好用的 function, scan, split, match, gsu...
CSS Tools: Reset CSS
Top 10 Ruby on Rails performance tips
►
2008
(26)
►
12月
(26)
沒有留言:
張貼留言