如何在 href 中为 jquerymobile 按钮使用 rails 路径
how to use rails path in href for jquerymobile button
我正在 rails 使用 jquery.mobile 按钮工作。(/view/sessions/new.html.erb)
我有一个硬代码路径,我试图将其更改为 rails 路由路径。
这里是原硬码:
<a href="/password_resets/new" data-role="button" data-icon="info" data-mini="true">Forgotten password?</a>
我的按钮在第二个按钮中正常
替换为 rails 路径(来自 rake 路由)时的问题是 link。它只对文本 "Forgotten password" 有效,对按钮本身无效。
这里的代码:
<div class="actions" data-role="button" data-icon="info" data-mini="true"><%= link_to 'Forgotten password?', new_password_reset_path %></div>
如何在 href 中使用 rails 路径?
你可以试试:
<%= link_to 'Forgotten password?', new_password_reset_path, data: {icon: 'info', mini: 'true', role: 'button'} %>
您可以在 href:
中使用 rails 路径
<a href="<%= new_password_reset_path %>" data-role="button" data-icon="info" data-mini="true">Forgotten password?</a>
我正在 rails 使用 jquery.mobile 按钮工作。(/view/sessions/new.html.erb)
我有一个硬代码路径,我试图将其更改为 rails 路由路径。 这里是原硬码:
<a href="/password_resets/new" data-role="button" data-icon="info" data-mini="true">Forgotten password?</a>
我的按钮在第二个按钮中正常
替换为 rails 路径(来自 rake 路由)时的问题是 link。它只对文本 "Forgotten password" 有效,对按钮本身无效。 这里的代码:
<div class="actions" data-role="button" data-icon="info" data-mini="true"><%= link_to 'Forgotten password?', new_password_reset_path %></div>
如何在 href 中使用 rails 路径?
你可以试试:
<%= link_to 'Forgotten password?', new_password_reset_path, data: {icon: 'info', mini: 'true', role: 'button'} %>
您可以在 href:
中使用 rails 路径<a href="<%= new_password_reset_path %>" data-role="button" data-icon="info" data-mini="true">Forgotten password?</a>