我目前遇到的问题是在跨度内部显示任何HTML实体。我目前正试图让∞
显示我的对象是否没有销毁日期。如果我将实体移出跨度,它将出现。下面是呈现之前的代码:
<tr>
<th>
Deactivate Date
</th>
<td>
<span edit>
<%= text_field_tag 'destroy_date', @account_type.destroy_date %>
</span>
<span show>
<%= @account_type.destroy_date.present? ? @account_type.destroy_date : '∞'.html_safe %>
</span>
</td>
</tr>
如果@ account_types.destroy_date不存在,以下是代码的呈现方式。
<tr>
<th>
Deactivate Date
</th>
<td class="clickable">
<span edit="" style="display: none;">
<input id="destroy_date" name="destroy_date" type="text" last-value="" class="hasDatepicker">
</span>
<span show="" style="display: inline-block;"> </span>
</td>
</tr>
答案 0 :(得分:0)
相关的.js文件中存在导致此问题的问题。