我是rails开发的新手,我正在尝试让auto_html gem工作,但是没有任何东西被保存到DB的body_html字段中。我也没有收到任何错误,所以好像宝石似乎没有被调用。
我已将gem包含在我的gemfile中并运行bundle install。我没有做正确的事吗?我的想法是我不需要在任何地方调用任何auto_html方法,因为我在模型中有auto_html_for。
我在Rails 3.2.1和ruby 1.9.3p125以及auto_html 1.5.1
上型号:
class Video < ActiveRecord::Base
belongs_to :campaign
auto_html_for :body do
html_escape
image
youtube(:width => 400, :height => 250)
link :target => "_blank", :rel => "nofollow"
simple_format
end
end
控制器:
class VideosController < ApplicationController
def new
@video = Video.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @video }
end
end
def create
@video = Video.new(params[:video])
respond_to do |format|
if @video.save
format.html { redirect_to videos_path(:campaign => "#{@video.campaign_id}"), notice: 'Video was successfully created.' }
format.json { render json: @video, status: :created, location: @video }
else
format.html { render action: "new" }
format.json { render json: @video.errors, status: :unprocessable_entity }
end
end
end
查看:
= simple_form_for @video do |f|
.field
= f.hidden_field :campaign_id, :value => "#{params[:campaign]}"
= f.text_area :body
.actions
= f.submit 'Save'
编辑:来自schema.rb的视频表定义
create_table "videos", :force => true do |t|
t.text "body"
t.text "body_html"
t.integer "campaign_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
答案 0 :(得分:0)
auto_html_for与Rails 3.2.1 +
的效果不佳安装最新的auto_html版本(1.5.2)。