gpt4 book ai didi

ruby-on-rails - Rails 4 - 通过 link_to 传递参数?

转载 作者:行者123 更新时间:2023-12-03 00:53:59 25 4
gpt4 key购买 nike

我有一个表单 - 根据用户单击哪个链接来显示表单,我希望将不同的隐藏参数传递到记录并在提交时保存。有没有一个好的方法来做到这一点?提前致谢!

例如:

<%= link_to 'General Request', new_request_path %>

<%= link_to 'Project Request', new_request_path %> ### -> set request.project = true

<%= link_to 'Administrative Request', new_request_path %> ### -> set request.admin = true

最佳答案

对于您的示例,您可以使用:

<%= link_to 'Project Request', new_request_path(project: true) %>

这会产生一个类似http://127.0.0.1:3000/request?project=true

的链接

<%= link_to 'Administrative Request', new_request_path(admin: true) %>

这会产生一个类似 http://127.0.0.1:3000/request?admin=true

的链接

关于ruby-on-rails - Rails 4 - 通过 link_to 传递参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17706494/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com