我使用jquery.mobile按钮在rails中工作。(/ 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路由)时的问题是链接。它只适用于文本&#34;忘记密码&#34;而不是按钮本身。 这段代码:
<div class="actions" data-role="button" data-icon="info" data-mini="true"><%= link_to 'Forgotten password?', new_password_reset_path %></div>
如何在href中使用rails路径?
答案 0 :(得分:0)
您可以尝试:
<%= link_to 'Forgotten password?', new_password_reset_path, data: {icon: 'info', mini: 'true', role: 'button'} %>
答案 1 :(得分:0)
您可以在href:
中使用rails路径<a href="<%= new_password_reset_path %>" data-role="button" data-icon="info" data-mini="true">Forgotten password?</a>