在 Rhomobile 控制器中添加新视图



我有这个。

我在哪里可以找到config/routes.rb以及如何在罗莫比尔中使用ApplicationController

如何为现有的移动控制器添加视图?

可能吗?

config/routes.rb 在 Rhomobile 中不存在。如果我没记错的话,那么它就存在于轨道中。

其次,"

application.rb"的工作方式类似于Rhomobile中的"ApplicationController"。

如果你想向现有模型添加新视图,只需将新方法(def)添加到控制器(.rb)中,并使用与新方法相同的名称的新视图(.erb)。

假设在app/Demo中存在一个模型DemoController.rb。 您可以像这样向其添加新方法。

class DemoController < Rho::RhoController
  ...
  def index
  end
  def new_method
  end
end

要从索引视图导航到new_method,您可以编写

<button onclick="location.href='/app/Demo/new_method'">new method</button>

<button onclick="location.href='<%= url_for :action => :new_method %>'"
>new method</button>

相关内容

  • 没有找到相关文章

最新更新