我正在写一个降价博客,我想利用前面的内容来定义元数据,例如帖子标题。这个前端是markdown字段的一部分,并在控制器的create动作中进行解析。
我面临的问题是我的控制器拒绝保存修改后的属性。我试过把它移到一个带有before_actions的模型方法中,但是没有用。我还read this question并在我的模型中尝试了attribute_will_change!
方法但没有成功。
我没有想法,所以任何帮助都会受到赞赏。
public
属性 按预期保存,但其余属性未保存。||=
并将其替换为常规=
作业。发布控制器后
def create
@post = Post.new(post_params)
@post.public = true
@post.user = User.first
@post.word_count = @post.markdown.scan(/[\w-]+/).size
fm, content = YAML::FrontMatter.extract(@post.markdown)
@post.title_will_change!
@post.title ||= fm[:title].to_s
@post.subtitle ||= fm[:subtitle]
@post.abstract ||= fm[:abstract]
@post.video_token ||= fm[:video_token]
@post.slug ||= fm[:slug]
@post.seo_keywords = fm[:seo_keywords]
if @post.image
@post.image_id = fm[:image]
end
cat = Category.find_by_name(fm[:category])
if cat.present?
@post.category = cat
else
@post.category = Category.create(name: fm[:category])
end
new_markdown = @post.markdown.gsub(/(---\n(?:.*: '.*'\n)*---)/, '')
@post.markdown = new_markdown
respond_to do |format|
if @post.save
format.html { redirect_to @post, notice: 'Post was successfully created.' }
format.json { render :show, status: :created, locataion: @post }
else
format.html { render :new }
format.json { render json: @post.errors, status: :unprocessable_entity }
end
end
end
答案 0 :(得分:0)
我用符号而不是字符串访问fm
变量......这就是问题所在。非常烦人。