1

我希望我忽略了一些愚蠢的事情,并提前感谢您的帮助,我对 Rails 很陌生,刚刚完成了 Michael Hartl 的 Rails Tutorial Book,我正在努力做没有脚手架的事情。

每个费用都有一个 ExpenseType ...(1 = 膳食,2 = 机票等)。我将整数作为 type_id 存储在费用表中。在我看来,我想显示实际 ExpenseType 名称字段的值。

错误是(我清楚地看到它为什么会失败,费用表中没有费用 ID 列......但我不确定我缺少什么连接。

SQLite3::SQLException: no such column: expense_types.expense_id: SELECT  "expense_types".* FROM "expense_types"  WHERE "expense_types"."expense_id" = 14 LIMIT 1

我认为我需要提供更明确的外键引用,但我尝试将其包含在行中并没有帮助。


楷模

class Expense < ActiveRecord::Base
  attr_accessible :amount, :expense_date, :description, :is_billable, :mileage, 
                                :pay_method, :project_id, :type_id

  belongs_to :project
  has_one :expense_type

  validates :expense_date, presence: true
  validates :type_id, presence: true
  validates :project_id, presence: true  
  validates :amount, presence: true, numericality: { greater_than: 0 }

end

和 ExpenseType 模型

class ExpenseType < ActiveRecord::Base
  attr_accessible :name, :active

  belongs_to :expense

  validates :name, presence: true

end

我的控制器

class ExpensesController < ApplicationController

def index
  @expense = Expense.new
  @expense_list = Expense.all

  # UI options
  @button_text = 'New' 
  @button_type = 'primary'   

end

def new
end

def create
  @expense = Expense.new(params[:expense])
  @expense_list = Expense.all

  # UI options
  @button_text = 'New' 
  @button_type = 'primary'   

  if @expense.save
    #sign_in @expense
    flash[:success] = "You have added an expense."
      redirect_to :back
  else
      render 'index'
  end

end

def edit
  @expense = Expense.find(params[:id])
  @expense_list = Expense.all

  # UI options
  @button_text = 'Save' 
  @button_type = 'success'   

  render 'index'
end

def update
  @expense = Expense.find(params[:id])
  @expense_list = Expense.all  
  if @expense.update_attributes(params[:expense])
    flash[:success] = "Updated"
    #sign_in @expense
    redirect_to :back
  else
    render 'index'
  end
end

def destroy
  @expense = Expense.find(params[:id])
  @expense.destroy
  flash[:success] = "expense deleted"
  redirect_to :back
end


end

最后是视图

<% provide(:title, 'Expenses') %>
<h1>Manage Expenses</h1>

<div class="row">
  <div class="span11 well"> 
    <%= form_for @expense do |f| %>
    <%= render 'shared/error_messages', object: f.object %>    

    <div class="row">   


          <div class="span4">
            <%= f.label :project_id %>
            <%= f.text_field :project_id, class: "span4" %>
          </div>  


    </div>
    <div class="row">   

          <div class="span2">
            <%= f.label :expense_date, "Date" %>
            <%= f.text_field :expense_date, class: "span2", value: "03/04/2012" %>
          </div>


          <div class="span3">
            <%= f.label :type_id %>
            <%= collection_select(:expense, :type_id, ExpenseType.all, 
                    :id, :name, { prompt: 'Select Expense Type'}, { class: 'span3' }) %>
          </div>  

          <div class="span1">
            <%= f.label :amount %>
            <%= f.text_field :amount, class: "span1" %>
          </div>          

          <div class="span1">
            <%= f.label :mileage %>
            <%= f.text_field :mileage, class: "span1" %>
          </div>  
          <div class="span1">
            <%= f.label :is_billable, "Billable?" %>
            <%= f.text_field :is_billable, class: "span1" %>
          </div>                        
           <div class="span2">
            <%= f.label :pay_method %>
            <%= f.text_field :pay_method, class: "span2" %>
          </div>          


    </div>
    <div class="row">   
          <div class="span4">
            <%= f.label :description %>
            <%= f.text_area :description, rows: 2, class: "span4" %>
          </div>

          <div class="span3">
            <%= f.label :description, "Attendees" %>
            <%= f.text_area :description, rows: 2, class: "span3" %>
          </div>
         <div class="span2">
           <BR> <%= f.submit "    #{@button_text}    ", class: "btn btn-large btn-#{@button_type}" %>
          </div>

    </div>    
    <% end %>
  </div>
</div>



<div class="row">
  <div class="span12">
     <table class="table table-bordered table-striped">
       <thead>
        <tr>
          <th>Date</th>
          <th>Project</th>
          <th>Type</th>
          <th>Amount</th>         
          <th>Description</th>  
        </tr> 
       </thead>
       <tbody>
       <% @expense_list.each do |expense_item| %>

       <tr>
          <td><%= expense_item.expense_date %></td>
          <td><%= expense_item.project_id %></td>         
          <td><%= expense_item.type_id %></td>         
          <td><%= expense_item.amount %></td>
          <td><%= expense_item.description %></td>

          <td><%= link_to 'Edit', edit_expense_path(expense_item[:id]) %></td>
          <td><%= link_to 'Delete', expense_item, method: :delete, data: { confirm: 'Are you sure?' } %></td>
        </tr>
        <% end %> 
      </tbody>  
    </table>

  </div>
</div>

...我正在处理的部分是后一部分,为了清楚起见再次粘贴在这里

<% @expense_list.each do |expense_item| %>

          .....

<%= expense_item.expense_type.name %>

          ......
        <% end %> 
4

1 回答 1

0

您将在模型关联中指定 FK。此外,您似乎应该在这里使用 belongs_to 关系,而不是 has_one

has_one 意味着对费用对象的更改意味着费用类型记录也应该更改(不是必须更改,而是按照惯例)。

如果你使用 has_one 你需要做:

has_one :expense_type, primary_key: :type_id

与belongs_to:

belongs_to :expense_type, foreign_key: :type_id

根据我认为您的代码应该在 ExpenseType 中构建的方式,您应该具有:

has_many :expenses, foreign_key: :type_id
于 2012-07-22T20:53:46.257 回答