维斯塔版本 -

发布于 2024-09-19 00:33:31 字数 806 浏览 8 评论 0原文

我在这里使用 Vestal Version Fork 来支持 Rails 3: http://github.com/adamcooper/vestal_versions /

我遇到的问题是updated_by =>更新时 current_user 未存储在版本表中。

def update 
        @book = Book.find(params[:id]) 
  respond_to do |format| 
    if @book.update_attributes(params[:book].merge(:updated_by => current_user)) 
      format.html { redirect_to(@book, :notice => 'Book was 
successfully updated.') } 
      format.xml  { head :ok } 
    else 
      format.html { render :action => "edit" } 
      format.xml  { render :xml => @book.errors, :status => :unprocessable_entity } 
    end 
  end 
end 

我检查了日志,没有错误,Rails 正在数据库中为用户字段插入 NULL,我需要填充的是 user_id

想法?

谢谢

I'm using the Vestal Version Fork here for Rails 3 support: http://github.com/adamcooper/vestal_versions/

The issue I'm having is that the updated_by => current_user is not storing in the versions table on update.

def update 
        @book = Book.find(params[:id]) 
  respond_to do |format| 
    if @book.update_attributes(params[:book].merge(:updated_by => current_user)) 
      format.html { redirect_to(@book, :notice => 'Book was 
successfully updated.') } 
      format.xml  { head :ok } 
    else 
      format.html { render :action => "edit" } 
      format.xml  { render :xml => @book.errors, :status => :unprocessable_entity } 
    end 
  end 
end 

I checked the logs, there is no error, Rails is INSERTING NULLs in the DB for the user fields, the one I need to populate is user_id

Ideas?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愿与i 2024-09-26 00:33:31

将以下内容添加到您的模型类中应该可以使其工作

attr_accessible  :updated_by

Add the following to your model class should make it work

attr_accessible  :updated_by
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文