我在哪里添加操作Rails中博客文章的代码?

时间:2012-12-14 15:40:26

标签: ruby-on-rails-3

以下是在views / posts / show.html.erb文件中适用于我的代码:

<% require 'rmmseg' %>
<% RMMSeg::Dictionary.load_dictionaries %>
<% text = "你好" %>
<% algor = RMMSeg::Algorithm.new(@post.content) %>
<% loop do %>
    <% tok = algor.next_token %>
    <% break if tok.nil? %>
    <% text2 = tok.text.force_encoding('UTF-8') %>
    <%= "#{text2}" %>
<% end %>

我是rails的新手,所以我需要帮助知道在框架中放置此代码或类似代码的位置,以便使用数据库中的空格保存帖子。它应该在控制器中吗?如果是这样,我该怎么做?

我正在尝试并且失败了:

def create
    @post = Post.new(params[:post])

require 'rmmseg'
  RMMSeg::Dictionary.load_dictionaries

    algor = RMMSeg::Algorithm.new(@post.content)
    loop do
    tok = algor.next_token
    break if tok.nil?
    text2 = tok.text.force_encoding('UTF-8')
    @post.content = "#{text2}"
    end

    respond_to do |format|
      if @post.save
        format.html { redirect_to @post, notice: 'Post was successfully created.' }
        format.json { render json: @post, status: :created, location: @post }
      else
        format.html { render action: "new" }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

我显然知道自己在做什么。

1 个答案:

答案 0 :(得分:0)

我打电话给Rails Hotline他们给了我提示,使用回调(before_save,after_save等)把它放在模型中。

这对我有用。