0

ajaxを使用してインデックス内の足場のアクション「表示」を実行したいのですが、表示をクリックしても何も表示されません。私のファイルは次のとおりです。

Finances_controller.rb

  def show
    @finance = Finance.find(params[:id])

  end

_show.html.erb

<p id="notice"><%= notice %></p>

<p>
  <b>Date update:</b>
  <%= @finance.updated_at %>
</p>

<p>
  <b>Money:</b>
  <%= @finance.money %>
</p>

<p>
  <b>Entrance:</b>
  <%= @finance.entrance %>
</p>

<p>
  <b>Description:</b>
  <%= @finance.description %>
</p>

<p>
  <b>Situation:</b>
  <%= @finance.situation %>
</p>

<p>
  <b>Local:</b>
  <%= @finance.local %>
</p>


<%= link_to 'Edit', edit_finance_path(@finance) %> |
<%= link_to 'Back', finances_path %>

私のindex.html.erbはボタンショーを変更しました:

Bem vindo <%= session[:user_name]%>
<div id='list' align='left'>
<h1>Finanças - Hoje é dia <%= Date.today %></h1>
<%= link_to 'New Finance', new_finance_path %>
<table  cellpadding="5"  >
  <tr>
    <th>Data de Inserção</th>
    <th>Caixa</th>
    <th>Entrada</th>
    <th>Descrição</th>
    <th>Situação</th>
    <th>Local</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @finances.each do |finance| %>
  <tr>
    <td><%= finance.created_at %></td>
    <td><%= finance.money %></td>
    <td><%= finance.entrance %></td>
    <td><%= finance.description %></td>
    <td><%= finance.situation %></td>
    <td><%= finance.local %></td>
    <td><%= link_to 'Show', finance,:action => 'show',:id => @finance , :remote =>:true %></td>
    <td><%= link_to 'Edit', edit_finance_path(finance) %></td>
    <td><%= link_to 'Destroy', finance, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  </tr>
<% end %>
</table>

<br />
</div>
<div id='tools' align='right'>
    <%if @finance %>
        <%= render('show') %>
    <% end %>
    </div>
    <%= link_to 'Logout', new_session_url,method: :delete %>

ショーをクリックすると、URL 'localhost:3000/finances/1' が表示されますが、これをクリックしても何も起こりません。 @finance 、

   <%if @finance %>
        <%= render('show') %>
    <% end %>
4

1 に答える 1

0

使ってみてください= render 'finances/show'

于 2012-08-19T19:07:39.427 に答える