1

我正在写一个降价博客,我想使用前端来定义元数据,例如帖子标题。前面的内容是 markdown 字段的一部分,并在控制器的 create 操作中进行解析。我面临的问题是我的控制器拒绝保存修改后的属性。我已经尝试将它转移到一个带有 before_actions 的模型方法中,但它不起作用。我也阅读了这个问题并在我的模型中尝试了该attribute_will_change!方法但没有成功。我没有想法,所以任何帮助将不胜感激。

  • 由于某种原因,该public属性按预期保存,但其余的不是。
  • 确保 fm 变量包含值(完美运行)
  • 尝试将其移至模型 before_save 操作
  • 我也尝试删除||=并用常规=分配替换它们。

后控制器创建

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
4

1 回答 1

0

fm用符号而不是字符串访问变量......这就是问题所在。很烦人。

于 2016-08-21T05:43:48.897 回答