- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我需要为子菜单的事件菜单项加下划线。我发现我可以在我的菜单中使用以下内容。我可以通过申请类(class)来做到这一点:
<li><%= link_to "* RFQ", rfq_path(1), class: get_rfqs_class() %></li>
并且有一个辅助元素
def get_rfqs_class
if controller_name == 'rfqs'
return 'active'
end
end
我为每个元素都有一个 get_xxx_class() 和一个相应的助手。
效果很好。但是,我需要为另一个菜单项做一些不同的 link_to
<li> <%= link_to "Pre Production Meeting", controller:
'pre_production_meetings', action: 'show', id: 1 ,
op_id: $current_opportunity, class: get_pre_production_meetings_class() %> </li>
问题是不同的 link_to 格式导致下划线不显示。如果我进行检查,它会显示类(class)处于事件状态,但我看不到下划线
<a href="/pre_production_meetings/1?class=active">Pre Production Meeting</a>
我尝试在以下代码中使用 div 和 span,但没有成功。
<% if controller_name == 'pre_production_meetings' then %>
<li> <%= link_to "Pre Production Meeting", controller: 'pre_production_meetings', action: 'show', id: 1 , op_id: $current_opportunity, class: get_pre_production_meetings_class() %> </li>
<% else %>
<li> <%= link_to "Pre Production Meeting", controller: 'pre_production_meetings', action: 'show', id: 1 , op_id: $current_opportunity %></li>
<% end %>
像我那样使用 Controller / Action 的 link_to 是否会阻止类被正确应用?
此外,我还检查了按预期工作的菜单项的样式
ul.art-hmenu>li>a.active {
padding: 0 12px;
margin: 0 auto;
color: #145366;
text-decoration: underline;
}
如果我检查生产前 session 样式,我看不到 a.active 但看到 a.hover
ul.art-hmenu>li>a:hover, .desktop ul.art-hmenu>li:hover>a {
color: #000000;
text-decoration: none;
}
如果我将文本装饰更改为下划线,那么我会按预期看到下划线。
最佳答案
link_to 的那个实例使用这种格式:
link_to(body, url_options = {}, html_options = {})
您需要将您的 url 选项括在花括号中,这样链接看起来像这样:
<a href="/pre_production_meetings/1" class="active">
您的类(class)已嵌入到 url 而不是 html 中。
这应该可以解决您的问题:
<%= link_to "Pre Production Meeting",
{controller: 'pre_production_meetings', action: 'show', id: 1 ,
op_id: @current_opportunity},
class: get_pre_production_meetings_class() %>
此外,$ 可能是错字。我假设它是一个@。
关于css - Rails - 类不适用于链接到 Controller /操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39667295/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!