如何为 webrick 编写查询字符串?
我的 Rails 应用程序需要在文本框中指定几个值。 我的网页包含几个文本框。在使用 webrick 时,如何将 url 中这些文本框的值指定为查询字符串?任何人都可以帮忙,我是新手。
提前致谢。
My rails application requires few values to be specified in the text box.
My web page contains few text boxes .How can i specify the values of these text boxes in the url as query string while using webrick?can any one help, am new to this.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的网址如下所示:
localhost:3000/Accounts/1/edit?value1=A&value2=B
并且您想将它们放入文本框中,则必须在控制器中创建一些实例变量,然后在视图中引用它们。控制器操作:
视图:
如果您按照我的示例操作,第一个文本框将显示 A,第二个文本框将显示 B。
请注意,网络服务器对此行为没有影响。 webrick、apache、mongrel、thin 等...都会这样做。
If your url looks like this:
localhost:3000/Accounts/1/edit?value1=A&value2=B
and you want to put those in text boxes you must create some instance variables in the controller, and then reference them in the view.Controller Action:
View:
If you followed my example, the first text box would display A and the second B.
Note that the webserver has no effect on this behavior. webrick, apache, mongrel, thin, etc... will all do this.