How to replace a pattern in a string

跟風遠走 提交于 2019-12-13 09:47:17

问题


I built a page that is rendered differently depending on params. The logic is something like this:

<% if params[:x] == "1" %>
  <!--render version A-->
<% elsif params[:x] == "2" %>
  <!--render version B-->
<% elsif params[:x] == "3" %>
  <!--render version C-->
<% end %>

I want each version to have two links which link to the other two versions, so the urls should have different params. I have a url string original_url, which is:

"localhost:3000/page?x=1"

and want to replace its parameter depending on params. The other two versions should be:

"localhost:3000/page?x=2"
"localhost:3000/page?x=3"

How can I eliminate the pattern ?x=[number] from original_url and replace it with something else?

For version 1, I could do

request.original_url.sub("?x=1", "?x=2")

and then

request.original_url.sub("?x=1", "?x=3")

but then that wouldn't work on the other two versions.


回答1:


I would do this for the links

<%= ([1,2,3]- [params[:x]]).each do |link_number| %>
   <%= link_to "Version #{link_number}", "/page?x=#{link_number}" %>
<% end %>

This way everytime the page is loaded the link to the other 2 versions will exist.

You could handle the partials through the controller (which seems better) or use something like:

<%= render "version_#{['A','B','C'][params[:x] - 1]}" %>

Without a better understanding of the problem I cannot assist beyond this point.



来源:https://stackoverflow.com/questions/29015390/how-to-replace-a-pattern-in-a-string

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!