私はこれを持っています。
Rhomobile のどこconfig/routes.rb
にあり、どのように使用できますか?ApplicationController
既存の rhomobile コントローラーにビューを追加するには?
出来ますか?
config/routes.rbは Rhomobileには存在しません。私が間違っていなければ、レールに存在します。
次に、「application.rb」は、Rhomobile の「ApplicationController」と同様に機能します。
また、既存のモデルに新しいビューを追加する場合は、コントローラー (.rb) に新しいメソッド (def) を追加し、新しいメソッドと同じ名前の新しいビュー (.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>