我已经设置了一个小应用程序,该应用程序需要一个电子邮件地址并保存它,我已经在模型上设置了验证(唯一且有效的电子邮件)并且这些都有效。
我正在使用下面的代码来尝试保存电子邮件,如果它已经存在或者它不是有效的格式,它需要停止并设置错误消息
def create
interest = KnownInterest.new( :email => params[:email] )
if(interest.valid? and interest.save)
flash[:notice] = "Thanks for showing interest, We'll be in touch with updates."
else
flash[:notice] = interest.errors.messages
end
redirect_to action: "index"
end
这吐出[“电子邮件无效”],我如何让它成为一个字符串(不是我认为的数组,如果我错了,请纠正我)