0

我有一个 Rails 应用程序,我使用 Active Admin (0.3.1) 作为 mi 管理界面。问题是我想向它添加一个新模型,但我需要在用户提交表单后在创建操作上插入一些自定义代码。

可能吗?它是怎么做的?

我需要在创建过程中处理一些数据并创建一些其他对象。

先谢谢了。

4

1 回答 1

3

如果你想修改 ActiveAdmin 控制器,你可以这样做:

    ActiveAdmin.register Post do

      controller do
        # This code is evaluated within the controller class

        def create
          # override the action here
        end
      end

    end
于 2012-06-05T20:04:00.433 回答