ubuntu, ror, jQuery, css, website memo
太嫩, 沒啥心得, 用來紀錄每天學的
2009年1月23日 星期五
Helpers Outside Views
Helpers outside views
# models/category.rb
def description
"This category has #{helpers.pluralize(products.count, 'product')}."
end
def helpers
ActionController::Base.helpers
end
# products_controller.rb
def create
@product = Product.new(params[:product])
if @product.save
flash[:notice] = "Successfully created #{@template.link_to('product', @product)}."
redirect_to products_url
else
render :action => 'new'
end
end
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言