Raylarım blog uygulaması ile ataç kullanarak yüklemeye çalıştığımda bu hatayı alıyorum. "MissingRequiredValidatorError" derken neye atıfta bulunduğundan emin değilim Post_params güncelleyerek ve vererek: görüntü hem oluşturmak ve güncelleme post_params kullanmak gibi, iyi olacağını düşündüm
Paperclip::Errors::MissingRequiredValidatorError in PostsController#create
Paperclip::Errors::MissingRequiredValidatorError
Extracted source (around line #30):
def create
@post = Post.new(post_params)
Bu benim posts_controller.rb
def update
@post = Post.find(params[:id])
if @post.update(post_params)
redirect_to action: :show, id: @post.id
else
render 'edit'
end
end
def new
@post = Post.new
end
def create
@post = Post.new(post_params)
if @post.save
redirect_to action: :show, id: @post.id
else
render 'new'
end
end
#...
private
def post_params
params.require(:post).permit(:title, :text, :image)
end
ve bu benim mesajım yardımcısı
module PostsHelper
def post_params
params.require(:post).permit(:title, :body, :tag_list, :image)
end
end
Bana yardımcı olmak için ekstra malzeme ekleyebilir miyim lütfen bana bildirin.
validates_attachment :image, presence: true, content_type: { content_type: ["image/jpg", "image/jpeg", "image/png"] }