我有一个使用回形针 gem (v 3.4.0) 的 Rails 3.1 应用程序。简而言之。我有一个故事模型和一个帖子模型。一个故事可以有很多帖子。
#story.rb
class Story < ActiveRecord::Base
attr_accessible :title, :user_id, :username, :posts_attributes
belongs_to :user
has_many :posts, :dependent => :destroy,
:order => "created_at DESC"
accepts_nested_attributes_for :posts, :reject_if => lambda { |t| t['contents'].nil? }
end
#post.rb
class Post < ActiveRecord::Base
attr_accessible :contents, :photo, :dimensions
belongs_to :story, :touch => true
belongs_to :user, :touch => true
has_attached_file :photo,
:styles => {
:medium => { :geometry => "400x400>" },
:thumb => { :geometry => "100x100>" },
},
:processors => [:thumbnail],
:storage => :s3,
:s3_credentials => "#{Rails.root.to_s}/config/s3.yml",
:path => "/:style/:id/:filename"
before_save :extract_dimensions
serialize :dimensions
validates :contents, :presence => true,
:length => { :maximum => 399,
:minimum => 5 }
validates :user_id, :presence => true
validates_attachment_content_type :photo,
:content_type => ['image/jpeg', 'image/png', 'image/gif', 'image/jpg'],
:message => "Sorry, we don't support that type of image format"
end
如您所见,帖子可能有照片附件。我使用回形针来管理这些附件。
我使用 javascript/jquery 在客户端上生成动态发布这些帖子的表单。我的问题是这个。. . 如果帖子不包含照片附件,则一切正常。但是,如果帖子有照片附件,我会收到以下错误消息并且帖子不会发布:
WARNING: Can't verify CSRF token authenticity
User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = 61 LIMIT 1
(0.3ms) BEGIN
(0.2ms) COMMIT
Completed 401 Unauthorized in 238ms
结果,我的会话数据被破坏了,我什至看不到 Firebug 的请求标头。put 请求根本不会出现在 firebug 中。
现在,毫不奇怪,我可以通过 PostController 中的以下内容解决这个问题:
skip_before_filter :verify_authenticity_token, :only => [:create]
但我不想放弃这种安全感。我还尝试通过 js/jquery 将 CSRF 标头添加到我的表单中:
jQuery.ajaxSetup({
beforeSend: function(xhr) {
xhr.setRequestHeader('X-CSRF-Token', $('meta[name="csrf-
token"]').attr('content'));
}
});
但这并不能解决问题,而且正如我上面所说的,我什至无法看到请求头数据以查看标头。
任何人都可以提出回形针触发问题的原因吗?