2

我似乎在任何地方都找不到这个 - 控制台显示该字段,nil但实际上操作文本正在存储可能是“空白”的内容。

MyModel.rich_text_field.nil?无论实际内容是否为空白,都返回 false。

4

2 回答 2

6

您可以检查您的模型字段是否为空白:

MyModel.rich_text_field.blank?
于 2019-07-17T12:55:05.400 回答
0

这就是我最终处理操作文本字段验证以确定它们是否为空的方式。

在我的posts_controller 中,我确保 if @post.save在respond_to 块中有。

  # POST /posts or /posts.json
  def create
    @post = current_user.posts.new(post_params)

    respond_to do |format|
      if @post.save
        flash[:success] = "Post was successfully created."
        format.html { redirect_to @post }
        format.json { render :show, status: :created, location: @post }
      else
        format.html { render :new, status: :unprocessable_entity }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

在我的 Post 模型中,我添加了一个带有自定义验证的属性访问器。

class Post < ApplicationRecord
  
  attr_accessor :body
  
  # Action Text, this attribute doesn't actually exist in the Post model
  # it exists in the action_text_rich_texts table                  
  has_rich_text :body

  # custom validation (Note the singular validate, not the pluralized validations)
  validate :post_body_cant_be_empty


  # custom model validation to ensure the post body that Action Text uses is not empty
   def post_body_cant_be_empty 
      if self.body.blank?
        self.errors.add(:body, "can't be empty") 
    end   
  end

end

现在将运行自定义验证以检查 Action Text 帖子正文是否为空,如果是错误,将在提交表单时向用户显示。

于 2021-05-11T02:33:46.763 回答