Still learning, but it is getting easier by the minute
I have a bunch of controllers (that correspond to db tables) and
corresponding views. However, I want to use the views with
link_to_remote into divs on a page that is created as a âbaseâ that is
loaded WITHOUT making any calls on the db. To this end I created a dud
controller, main, with a single empty method
def load
end
and a corresponding view that is the html âbaseâ. This works fine, but
I wanted to check and see if there are any caveats against doing this
(using a seperate dud controller) or if there is a more âconventionalâ
way to go.
I could put the empty method into a real, existing controller, I just
figured âmain/loadâ would be tidierâŚ
I notice you cannot access another controller method from a view, eg.
:action => âothersec/listâ
is no good; the action must belong to the corresponding controller
That being the case, I might as well just have one controller, âmainâ,
with methods like âlist_thatâ and âlist_thisâ, ie, there is not much
point in defining a controller for each table â all that is needed is
class definition in models/
However âwhat seems to be the caseâ to me is not necessarily the way
that it is â Iâm worried I may diverge too much from anything
resembling Best Practices here, particularly since this means going
script/generate controller this
then erasing everything but the model definition (I tried erasing those
two, and creating one âmain.rbâ with all the classes in, but then there
is an error).
Anyone have any thoughts on this? After a bit of googling I found some
stuff about inheritance governing this â does that mean I should put
the methods I want globally accessible in
app/controllers/application_controller.rb?
Not sure I follow you here, you can certainly link to a different
controller
from a view, what is that you are trying to do?
Colin
That is what I am trying to do, perhaps this is a syntax problem.
If I have three controllers under app/, âaoneâ, âatwoâ, âathreeâ, all of
them have a method âlistâ, in the view for aone I want to call the list
method from atwo, so I tried
:action => âatwo/listâ
This is a no go â whatâs the proper syntax?
Also (another sort of related syntax question), how can I use a
parameter with the methods? Hereâs a line which works in a view:
{ :action => "list_albums" }) %>">
and here is one which returns âundefined local variable or method
`urlââ, the only difference being I tried to pass a parameter via the
action
There is a clue in the error message that says that it does not like
url.
The reason is that it should be :url. I donât know whether the rest of
it
is correct or not.