0

我正在使用mailboxer gem,并且正在尝试使它在查看对话后(通过访问对话#show),我希望收据的is_read 属性变为真。但是,在我发送回复之前,该属性不会变为真。我尝试使用以下行:

receipt.update_attributes(is_read: true) 

但返回以下错误:

Error (ActiveRecord::ReadOnlyRecord)

我想我理解错误。我认为这是说该属性只能读取而不能更新。我的问题是,如果我进入对话#show 页面,如何实现让 is_Read 变为真的功能?

4

2 回答 2

1

而不是更新 is_read 属性试试这个

#conversations_controller.rb
def show
  @receipts = mailbox.receipts_for(conversation).not_trash
  @receipts.mark_as_read
end

private

def mailbox
    @mailbox ||= current_user.mailbox
end

def conversation
    @conversation ||= mailbox.conversations.find(params[:id])
end

您还可以将整个对话标记为已读

conversation.mark_as_read(current_user)
于 2014-02-23T21:33:09.543 回答
0

使用mark_as_read`conversation.receipts_for(current_user).update_all(:is_read => true)' in the方法对我有用。

def conversation
    if !params[:id] && @activeConvo
      @conversation = @activeConvo
    else
      @conversation ||= mailbox.conversations.find(params[:id])
    end
end
于 2016-03-23T17:23:38.677 回答