我想在对话框中打开我的观点/博客/新内容。试图按照这个SO答案使其工作:https://stackoverflow.com/a/5318155/732200
这是我的代码(博客被称为“寓言”):
这是我的部分观点/寓言/ fablemaker.html.erb
<div id="fableMaker" title="Fable Maker" style="display:none">
<div id="countdownTimer">
<span id="countdown_timer" class="timer">4:20</span><br />
<button id="play_btn">Play Timer</button>
<button id="pause_btn">Pause Timer</button>
<button id="reset_btn">Reset Timer</button>
</div>
<%= form_for @fable do |f| %>
<p>
<%= f.label :content, "Fable Portal:" %><br />
<%= f.text_area :content, :style => "" %>
</p>
<p>
<%= f.label :title, "What would you like to title your creation?" %><br />
<%= f.text_field :title %>
</p>
<p><%= f.submit "Create Fable", remote: true %></p>
<% end %>
</div>
这是views / fables / create.js.erb:
$("#fableMaker").dialog({
autoOpen: false,
height: 900,
width: 550,
modal: true,
title: 'Fable Maker',
buttons: {
"Create": function() { $("#fable_form").submit() },
},
open: function() {
$("#fable_form").html("<%= escape_javascript(render('fablemaker')) %>")
},
});
这是fables_controller,创建动作:
class FablesController < ApplicationController
respond_to :html, :js
def create
@user = current_user
@fable = @user.fables.build(params[:fable])
@fable.save
respond_with @fable, :location => @fable
end
以下是相关路线呼叫:
root :to => "pages#home"
resources :fables
match '/views/fables/fablemaker', :to => 'fables#create'
get "fables/create"
这是应该启动页面的链接:
<li><%= link_to image_tag("makeyourfable.png", :size => "130x102",
:alt => "freewriting portal",
:class => "typewriter",
:mouseover => "makeyourfableH.png"),
new_fable_path %>
</li>
当我检查页面源时,所有元素和字段都在加载,但它们不可见 - 当然不是在对话框中。所有显示的都是我的application.html内容。
答案 0 :(得分:1)
在jQuery对话框的open函数中,您尝试将新的HTML插入到#fable_form元素中。
我相信您打算将该HTML插入#fableMaker元素。
js响应正在渲染构成表单的html并插入到调用视图中已经存在的div中。
$("#fableMaker").dialog({
autoOpen: false,
height: 900,
width: 550,
modal: true,
title: 'Fable Maker',
buttons: {
"Create": function() { $("#fable_form").submit() },
},
open: function() {
$("#fableMaker").html("<%= escape_javascript(render('fablemaker')) %>")
},
});