0

我试图在 Ruby on Rails(v. 3.2.13)中做一个小餐厅网站。

我做了 3 张桌子:客户(姓名,电子邮件),预订(客户 ID,桌子 ID),桌子(座位,区域)。

我的模型看起来像这样。

class Reservation < ActiveRecord::Base   
  belongs_to :customer  
  belongs_to :table 
end

class Customer < ActiveRecord::Base   
  has_many :reservations  
  has_many :tables, :through => :reservations 
end

class Table < ActiveRecord::Base   
  has_many :reservations   
  has_many :customers, :through => :reservations 
end

我制作了一个表格来搜索合适的表格。如果顾客找到他的桌子,他会点击一个按钮来预订它。此按钮会导致“添加新客户”视图。该按钮如下所示:

<%= button_to "Book table #{table.id}" , customers_path(:table_id => table) %>

在 中CustomerController,我编辑了 create 方法,如下所示:

def create
  @customer = Customer.new(params[:customer])
  table = Table.find(params[:table_id])

  respond_to do |format|
    if @customer.save
      format.html { redirect_to @customer, notice: 'Customer was successfully created.' }
      format.json { render json: @customer, status: :created, location: @customer }
  @reservation = @customer.reservations.build(table: table).save!
    else
      format.html { render action: "new" }
      format.json { render json: @customer.errors, status: :unprocessable_entity }
    end
  end
end

可悲的是“Table.find”不起作用。当我使用“Table.first”时,会添加一个预订,但是当我使用上面的表时,我会收到消息:“找不到带有 id= 的表。但是,我可以在 NewCustomer 视图上显示 ID。

为什么方法中没有ID create

编辑:

这是搜索表格的主页形式。此外,我不得不说我为表格搜索创建了一个新的资源主页。

<%= form_tag mainpages_path, :method => 'get' do  %>
<p>
  How many persons: <br/><%= number_field_tag(:search) %> <br/>
  Date: <%= date_select :date, 'Date', use_short_month: true, order: [:day, :month, :year] %> <br/>
  Beginn: <%= time_select :Beginn, 'Beginn' , default:Time.now %>  <br/>
  End  : <%= time_select :Ende, 'Ende' , default: Time.now + 2.hours  %>  <br/>
  <%params[:search]%>
  <%= submit_tag "Search" %>
</p>
<% end %>

<% if @tables %>
<h2>Folgende Tische stehen zur Auswahl</h1>
<% @tables.each do |table| %>
    <div class="entry" >
      <h3>Seats: <%= table.seats %></h3>
      <h3>Area: <%= table.area %></h3>
      <%= link_to "Book this table #{table.id}" , new_customer_path(:table_id => table) %>
    </div>
<% end %>
<% else %>
<p> Pls choose a table</p>
<% end %>

EDIT2:HTML代码的链接:

<a href="/customers/new?table_id=1" mode="post">Book this table 1</a>

这是客户/新视图的 HTML 代码:

<!DOCTYPE html>
<html>
<head>
<title>Restaurant</title>
<link href="/assets/application.css?body=1" media="all" rel="stylesheet" type="text/css" />
<link href="/assets/customers.css?body=1" media="all" rel="stylesheet" type="text/css" />
<link href="/assets/mainpages.css?body=1" media="all" rel="stylesheet" type="text/css" />
<link href="/assets/reservations.css?body=1" media="all" rel="stylesheet" type="text/css" />
<link href="/assets/scaffolds.css?body=1" media="all" rel="stylesheet" type="text/css" />
<link href="/assets/tables.css?body=1" media="all" rel="stylesheet" type="text/css" />
<script src="/assets/jquery.js?body=1" type="text/javascript"></script>
<script src="/assets/jquery_ujs.js?body=1" type="text/javascript"></script>
<script src="/assets/customers.js?body=1" type="text/javascript"></script>
<script src="/assets/mainpages.js?body=1" type="text/javascript"></script>
<script src="/assets/reservations.js?body=1" type="text/javascript"></script>
<script src="/assets/tables.js?body=1" type="text/javascript"></script>
<script src="/assets/application.js?body=1" type="text/javascript"></script>
<meta content="authenticity_token" name="csrf-param" />
<meta content="ej1MgV2fad014SLkCv3dZXl8TknQH4JHZLoe56Xn/Kk=" name="csrf-token" />
</head>
<body>

<h1>New customer</h1>

<form accept-charset="UTF-8" action="/customers" class="new_customer" id="new_customer"   method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="ej1MgV2fad014SLkCv3dZXl8TknQH4JHZLoe56Xn/Kk=" /></div>
<div class="field">
<label for="customer_name">Name</label><br />
<input id="customer_name" name="customer[name]" size="30" type="text" />
</div>
<div class="field">
<label for="customer_email">Email</label><br />
<input id="customer_email" name="customer[email]" size="30" type="text" />
</div>


<input id="table_id" name="table_id" type="hidden" />


<div class="actions">
<input name="commit" type="submit" value="Create Customer" />
</div>
</form>
<a href="/customers">Back</a>
</body>
</html>
4

5 回答 5

1

控制器中的更改(只需添加一个@符号)

@table = Table.find(params[:table_id])

在视野中

<%= button_to "Book table #{table.id}" , customers_path(:table_id => @table) %>
于 2013-08-13T19:31:15.543 回答
1

试试这个

<%= button_to "Book table #{table.id}" , customers_path(:table_id => table), method: :post %>
于 2013-08-13T19:33:40.657 回答
0

这里的问题是使用button_to...

来自Url Helpers文档: Generates a form containing a single button that submits to the URL created by the set of options.

表单的 action 属性需要如下所示:

/customers/new?table_id=<table_id>

当您单击此按钮时,它应该路由到new呈现new视图的客户操作。您需要传递table_idnew视图,然后将其添加到您的客户表单中。像这样的东西:

def new
  ...
  @table_id = params[:table_id]
end

然后,当您提交客户时form- 这将路由到create操作,您应该可以访问params[:table_id]

于 2013-08-13T20:34:33.923 回答
0

您好,经过 100 万次尝试后,我发现了错误!hidden_​​field_tag 的解决方案部分正确。我一直在尝试<%= hidden_field_tag :table_id %>。但是使用此代码,创建操作知道变量:table_id,但它有一个空字符串。现在我添加params[:table_id]到 hidden_​​field 并且现在变量的值:table_id可用。

长话短说,变量名和值必须在hidden_field_tag

<%= hidden_field_tag :table_id, params[:table_id] %>

感谢所有试图帮助我的人!

于 2013-08-15T15:07:47.727 回答
0

根据您发布的最后一点代码,您需要:

<%= link_to "Book this table #{table.id}" , customer_path(:table_id => table), mode: :post %>
于 2013-08-14T17:20:57.913 回答