我有一个对象菜单项,由控制器提供给相应的视图模板。该对象有两个字段:标签和链接。
我在控制器中启动了这个对象,如下所示:
// first param is for label and second for link.
menuitem = MenuItem.new("Hello","Say_hello_path")
在视图模板中,我输入以下内容:
<%= link_to menuitem.label, menuitem.link %>
我希望这会导致:<a href="/say/hello">Hello</a>
但我得到:<a href="Say_hello_path">Hello</a>
我究竟做错了什么?有没有更好的方法来达到预期的效果?