如何让特定视图显示不同的辅助对象。
module ApplicationHelper
def about_title
%Q{Everything you need!}.html_safe
end
def contact_title
%Q{Contact us!}.html_safe
end
end
我有一个在每个视图中呈现的部分标题,但我想显示不同的标题标题,而不必直接编辑视图(或编辑变量?以显示我想要的内容?)
<h1 class="title"><%= about_title %>&
我正在制作一个游戏,它在一个shell中使用各种不同的屏幕,我试图使用SWT中的复合子类来改变屏幕,但是当代码运行时,添加到子类中的小部件都没有显示出来。
主要代码调用合成-
Button newGameButton = new Button(startComposite, SWT.PUSH);
FormData fd_newGameButton = new FormData();
fd_newGameButton.left = new FormAttachment(0, 296);
newGameButton.setLayoutData(new Gr