在Rails中定义自定义方法

时间:2012-11-07 01:59:07

标签: ruby-on-rails methods routes

我刚刚开始使用Rails,我正在尝试构建一个银行应用程序。我在帐户之间设置交易时遇到问题。

我目前支持交易和账户。在我的交易页面中,我可以创建一个交易列表,每个交易包含有关源帐户,转移金额和目标帐户的信息。但是,在页面的末尾,我想要一个链接或按钮来处理页面上的所有事务并清除页面。因此,修改所有指定的帐户余额。

以下是我采取的步骤。

1)在事务模型(transaction.rb模型)中定义流程方法

class Transaction < ActiveRecord::Base
    def proc (transaction) 
        # Code processes transactions
        @account = Account.find(transaction.from_account)
        @account.balance = @account.balance - transaction.amount
        @account.update_attributes(params[:account]) #update the new balance
end
end

2)然后在事务控制器调用execute

中创建一个方法
def execute
      @transaction = Transaction.find(params[:id])
    proc (@transaction)
    @transaction.destroy

      respond_to do |format|
      format.html { redirect_to transactions_url }
      format.json { head :no_content }
  end

3)然后定义要在交易页面上显示的链接(如下所示):

<% @transactions.each do |transaction| %>
  <tr>
    <td><%= transaction.from_account %></td>
    <td><%= transaction.amount %></td>
    <td><%= transaction.to_account %></td>
    <td><%= link_to 'Execute', transaction, confirm: 'Are you sure?', method: :execute %></td>
    <td><%= link_to 'Show', transaction %></td>
    <td><%= link_to 'Edit', edit_transaction_path(transaction) %></td>
    <td><%= link_to 'Destroy', transaction, confirm: 'Are you sure?', method: :delete %></td>
    <td><%= transaction.id%></td>
 </tr>
<% end %>

4)但是当我点击Execute链接时,我收到路由错误: [POST]“/ transactions / 6”

目前我的路线(routes.rb)设置如下:

resources :transactions do
       member do
       post :execute
       end
   end

  resources :accounts

如何设置路线以便处理我的方法? 提前致谢

2 个答案:

答案 0 :(得分:1)

您在这里尝试做的不是添加新方法,而是添加新的“HTTP动词”。不要这样做。你可能会收到这样一个令人讨厌的消息:

    !! Unexpected error while processing request: EXECUTE, accepted HTTP methods are OPTIONS,
 GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, 
UNLOCK, VERSION-CONTROL, REPORT, CHECKOUT, CHECKIN, UNCHECKOUT, MKWORKSPACE, UPDATE, LABEL,
 MERGE, BASELINE-CONTROL, MKACTIVITY, ORDERPATCH, ACL, SEARCH, and PATCH

在控制台中运行“rake routes”并确保您有执行注册的路由。类似的东西:

execute_transaction

然后更新你的执行链接并用正确的路径查找器替换'transaction',并将方法设置为:post。而不是。

link_to "Execute", execute_transaction_path(transaction), method: :post

答案 1 :(得分:0)

小差异:将方法名称从符号更改为字符串。

resources :transactions do
  member do
    post "execute"
  end
end

结帐Rails Routing Guide