Ricevo questo errore quando provo a caricare utilizzando la graffetta con la mia app di blog di rails. Non sono sicuro di cosa si riferisca quando dice "MissingRequiredValidatorError" Ho pensato che aggiornando post_params e dandolo: immagine andrebbe bene, dato che sia creare che aggiornare usano post_params
Paperclip::Errors::MissingRequiredValidatorError in PostsController#create
Paperclip::Errors::MissingRequiredValidatorError
Extracted source (around line #30):
def create
@post = Post.new(post_params)
Questo è il mio 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
e questo è il mio aiuto post
module PostsHelper
def post_params
params.require(:post).permit(:title, :body, :tag_list, :image)
end
end
Per favore fatemi sapere se posso integrare materiale aggiuntivo per aiutarvi ad aiutarmi.
validates_attachment :image, presence: true, content_type: { content_type: ["image/jpg", "image/jpeg", "image/png"] }