提交按钮文本来自哪里(Ruby on rails)?

时间:2013-12-25 03:58:23

标签: ruby-on-rails forms button submit

我在这里使用ruby on rails指南 http://guides.rubyonrails.org/getting_started.html

在第5.13节: 我在提交按钮上显示两个不同的文本值,但在“_form”部分文件中,代码完全相同。 Rails似乎会以某种方式自动更改文本值。在两个视图中实现此目的的代码在哪里:new.html.erb和edit.html.erb。

(我的问题是手动控制文本,而是,我试图了解这种自动行为来自Rails的位置。)

_partial

<%= form_for @post do |f| %>
<% if @post.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@post.errors.count, "error") %> prohibited
  this post from being saved:</h2>
<ul>
<% @post.errors.full_messages.each do |msg| %>
  <li><%= msg %></li>
<% end %>
</ul>
</div>
 <% end %>
 <p>
  <%= f.label :title %><br>
<%= f.text_field :title %>
</p>

<p>
 <%= f.label :text %><br>
 <%= f.text_area :text %>
</p>

<p>
  <%= f.submit %>
</p>
<% end %>

posts_controller

    class PostsController < ApplicationController

def new
    @posts = Post.all
    @post = Post.new
end

def show
    @post = Post.find(params[:id])      
end

def index
    @posts = Post.all
end

# called by the posts_path function
def create
    @post = Post.new(post_params)
    if @post.save
        # Using redirect_to creates a new request.
        redirect_to @post
    else
        # Using render sends back the @post variable's data!
        # i.e. uses same request.
        render 'new'
    end
end

# Can only have one instance of render of redirect_to.
#render text: params[:post].inspect
def update
    @post = Post.find(params[:id])

    if @post.update(params[:post].permit(:title, :text))
        redirect_to @post
    else
        render 'edit'
    end
end

def edit
    @post = Post.find(params[:id])
end

# For SQL injection prevention.
private
    def post_params
        params.require(:post).permit(:title, :text)
    end

new.html.erb         

新帖子

      <%= form_for :post, url: posts_path do |f| %> 
<% if @post.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@post.errors.count, "error") %> prohibited
        this post from being saved:</h2>
      <ul>
            <% @post.errors.full_messages.each do |msg| %>
  <li><%= msg %></li>
            <% end %>
      </ul>
    </div>
    <% end %>

<p>
    <%= f.label :title %><br>
    <%= f.text_field :title %>
</p>

<p>
    <%= f.label :text %><br>
    <%= f.text_area :text %>
</p>

<p>
    <%= f.submit %>
</p>
  <% end %>

  <%= form_for :post do|f| %>

  <% end %>

  <%= link_to "List of Posts", posts_path %>

edit.html.erb       

编辑帖子

  <%= render 'form' %>

  <%= link_to 'Back', posts_path %>

4 个答案:

答案 0 :(得分:15)

如果您想在表单的提交按钮中更改文字:

<%= f.submit ( f.object.new_record? ? "Create" : "Update"), class: "btn" %>

答案 1 :(得分:7)

不同的文本来自.submit辅助方法。

它是一个表单构建器助手而不是* -tag助手,这意味着它在f上调用,或者在表单块中设置为参数的任何内容。但是,标记助手也会像表单构建器方法一样输出动态文本。

它引用了一些指定此内容的yml文件,

en:
  helpers:
    submit:
      create: "Create a %{model}"
      update: "Confirm changes to %{model}"

使文本动态化为模型名称。

可以使用I18n gem进行自定义。

所有这些都在这里描述: http://apidock.com/rails/ActionView/Helpers/FormBuilder/submit

答案 2 :(得分:1)

提交按钮代码如下:

<%= f.submit %>

您只需在元素声明后添加值即可更改此按钮的文本:

<%= f.submit "My button text" %>

您可以阅读有关此here

的更多信息

答案 3 :(得分:1)

从表单部分

移动提交按钮

<强>形式

<%= form_for @post do |f| %>
<% if @post.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@post.errors.count, "error") %> prohibited
  this post from being saved:</h2>
<ul>
<% @post.errors.full_messages.each do |msg| %>
  <li><%= msg %></li>
<% end %>
</ul>
</div>
 <% end %>
 <p>
  <%= f.label :title %><br>
<%= f.text_field :title %>
</p>

<p>
 <%= f.label :text %><br>
 <%= f.text_area :text %>
</p>


 <%= render 'form' %>
 <%= f.submit "Create"%>
 <%= link_to 'Back', posts_path %>
 <% end %>

修改

 <%= render 'form' %>
 <%= f.submit "Update"%>
 <%= link_to 'Back', posts_path %>
 <% end %>