无法在Rails中显示模式内容

时间:2018-11-07 04:05:47

标签: ruby-on-rails

我有以下文件

_result.html.erb
_show.html.erb
_show.js.erb

我在_result部分中放置了一个按钮,该按钮应以模态形式打开_show部分。但是当用户单击链接时,它仅显示一个条,而不包含。请问我是否缺少该程序的一部分?在我发现的教程中,这似乎相当容易。 我的代码如下:

_show.html.erb

<div id="modal-window" class="modal hide fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
  <h3 class="section_title">
Hello this is the Show modal
  </h3>
    </div>
  </div>
</div>

_result.html.erb (位于Welcome.html.erb中)

<div id="modal-window" class="modal hide fade" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content"></div>
  </div>
</div>

show.js.erb

$("#modal-window").find(".modal-content").html("<%= j (render 'invitations/show') %>");
$("#modal-window").modal('show');

我现在得到的只是一行:

filed rendering of modal

有人知道我为什么不显示包含内容,尽管我确实使用了相同的标签和ID标签Kolosek - Creating modal in rails 控制器:

  def show
    @invitation = Invitation.find(params[:id])

    respond_to do |format|
      format.html
      format.js {render :layout => false}
    end
  end

1 个答案:

答案 0 :(得分:2)

我看到您正在按照this教程创建模态,但是您的代码不正确!您正在尝试在另一个模式中显示一个模式,而应该在模式中显示其内容。将您的_show.html.erb修改为以下

#_show.html.erb
<div class="modal-header">
  <button type="button" class="close" data-dismiss="modal">x</button>
  <h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
  *Modal content comes here*
</div>
<div class="modal-footer">
  <button class="btn btn-primary">Save</button>
</div>