0

这是我的看法

<%= form_tag url_for(action: :comt, id: @com.id), remote: true do |f| %>
<textarea name="inst">test</textarea>
<button class="small"  id="btn">Submit</button>

这是我的控制器:

def comt
    id= params[:id]
    @com = comment.find id
    if @com.update_attribute(:instruction, params[:inst])
      redirect_to action: :index
    end
  end

它工作正常,但我需要使用 ajax。如果我删除 redirect_to 它会抛出错误消息。我错在哪里。任何人都可以纠正它。

4

0 回答 0