如何为 webrick 编写查询字符串?

发布于 2024-08-29 21:26:42 字数 113 浏览 5 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

草莓酥 2024-09-05 21:26:42

如果您的网址如下所示: localhost:3000/Accounts/1/edit?value1=A&value2=B 并且您想将它们放入文本框中,则必须在控制器中创建一些实例变量,然后在视图中引用它们。

控制器操作:

def edit
   @value1 = params[:value1]
   @value2 = params[:value2]
end

视图:

<%= text_box_tag :value1, @value1 %>
<%= text_box_tag :value2, @value2 %>

如果您按照我的示例操作,第一个文本框将显示 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:

def edit
   @value1 = params[:value1]
   @value2 = params[:value2]
end

View:

<%= text_box_tag :value1, @value1 %>
<%= text_box_tag :value2, @value2 %>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文