从视图输入 Rails
在 Rails 中,如何从视图获取信息以在控制器中使用。就像如果我有一个带有文本字段和按钮的页面,我如何将字段中的值(没有模型)发送到我的控制器中以在我的功能之一中使用它。我使用的是 Rails 3
In rails how do you get information from view to use in a controller. Like if i have a page with a text field and a button, how would i send the value from the field (without a model) into my controller to work with it in one of my functions. Im using rails 3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您可以使用一个简单的表单,例如:
在您的views/products/index.html.erb中:
在您的controllers/products_controller.rb中:
您还需要配置
routes.rb
,例如这样:Sounds like you could use a simple form, for example:
in your
views/products/index.html.erb
:in your
controllers/products_controller.rb
:You will also want to configure
routes.rb
, for example like this:我认为您仍然需要一个模型,但只需使用非活动记录模型,请参阅此 Rails Cast:http://railscasts.com/episodes/121-non-active-record-model
I think you will still want a model, but just use a Non Active Record Model see this Rails Cast: http://railscasts.com/episodes/121-non-active-record-model