这是我的观点
<%= 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它抛出错误消息。哪里我错了。任何人都可以纠正它。