Ruby on Rails は初めてで、次の問題があります:
コントローラーにメソッドがある場合:
def showbudgets
render :layout => false
username = session[:username]
time = Time.new
@budgets = Budget.findAll(username, time.year)
end
logger.debug を使用して確認したところ、@budgets で 2 つのレコードを取得しています。
私は次の見解を持っています:
<h2>Listing Budgets</h2>
<% if @budgets != nil %>
<table style="width:500px">
<tr>
<th>Year</th>
<th>Month</th>
<th>Amount</th>
</tr>
<% @budgets.each do |budget| %>
<tr>
<td><%= budget.budgetyear %></td>
<td><%= budget.budgetmonth %></td>
<td><%= budget.amount %></td>
</tr>
<% end %>
</table>
<% else %>
<br/>
No budgets set...
<% end %>
私は ajax リクエストを使用しているので、ビューにレイアウトを適用したくありません。行を削除すると、
render :layout => false
それ以外の場合はレコードを表示します