0

我有一个 Web 服务,为此我制作了两个应用程序,称为后端和前端。前端是一个活动资源客户端,我希望它从前端控制器的自定义操作方法调用后端控制器的自定义操作方法。我是 ROR 的新手。

前端控制器

class ProductsController < ApplicationController

 def my_method

    # call custom action of backend's controller 

 end
.....

end

后端控制器:

class ProductsController < ApplicationController

 def my_method

 # my code go here

 end

end

任何帮助将不胜感激。

4

2 回答 2

0

如果您处理这两个应用程序不是一个更好的设计,那么前端应用程序与后端交互会抛出一个 API 吗?我建议你看看这个

于 2012-06-16T18:46:41.880 回答
0

调用ProductsController.my_method 但更好的是,将其设为Products模型,然后调用Product.method(any_params_you_want)

于 2012-06-16T18:52:11.827 回答