我在 rhomobile 中创建了一个简单的项目。我的主屏幕显示一个文本框和一个按钮。
这是其中的代码index.erb
<div data-role="content">
<br /><br />
Email Address : <input type="text" name="Email" /><br />
<form method="POST" action="<%= url_for(:action =>:show_VibLoc) %>">
<input type="submit" value="Submit" />
</form>
现在我VibLoc.erb
在 app 文件夹下的 settings 文件夹中创建了一个新文件。
在VibLoc.erb
我只显示两个按钮。
在controller.rb
设置文件夹下的文件中,我创建了一个函数show_VibLoc
在此函数中,它呈现VibLoc.erb
文件
这是代码:
def show_VibLoc
render :action => :VibLoc
end
代码编译成功,但是当我单击该按钮时,我看不到我的VibLoc
视图。
我在这里做错了什么?