在开始之前,我是javascript,rails 3和jQuery的初学者,所以请 提供完整的例子。
这是我正在尝试做的事情: 我已经使用scaffold构建了一个rails应用程序,并将默认的javascript更改为 jQuery是为了在仪表板上制作饼图。
所以现在我可以添加jQuery UI并显示带有Show的对话框 当有人点击Show时,创建的脚手架的动作。
对话框的标题必须是id。
不幸的是,到目前为止我所尝试的一切都没有用。
我尝试过类似:,:remote =>真,
我认为最大的问题是,POST是否被执行(至少 如果我查看终端中的错误,它会说:
Started POST "/trips/1" for 127.0.0.1 at Sun Sep 19 11:07:24 +0200 2010
ActionController::RoutingError (No route matches "/trips/1"):
我认为应该执行GET。
这是我的完整索引文件:
<h1>Listing trips</h1>
<table>
<tr>
<th>License</th>
<th>Contract</th>
<th>Time</th>
<th></th>
</tr>
<% @trips.each do |trip| %>
<tr>
<td><%= trip.license %></td>
<td><%= trip.contract %></td>
<td><%= trip.time %></td>
<td><%= link_to 'Show', trip, 'class'=>"ajax", :remote => true %></td>
<td><%= link_to 'Show', trip, 'class'=>"ajax" %></td>
<td><%= link_to 'Show', trip, 'id' => 'opener', :remote => true %></td>
<td><%= link_to 'Show', trip, 'id' => 'opener' %></td>
<td><%= link_to 'Show', trip, 'id' => 'showdialog', :remote => true %></td>
</tr>
<% end %>
</table>
<div id="example"></div>
<script type="text/javascript">
$(document).ready(function(){
var dialogOpts = {
modal: true,
bgiframe: true,
autoOpen: false,
height: 500,
width: 500,
draggable: true,
resizeable: true,
};
$("#example").dialog(dialogOpts); //end dialog
$('#showdialog').click(
function() {
$("#example").load(this.href, type: 'get', function(){
$("#example").dialog("open");
}
);
return false;
}
);
});
</script>
<script type="text/javascript">
$(document).ready(function() {
var dialogOpts = {
autoOpen: false,
title: 'Trip: Trip Number comes here',
modal: true,
height: 600,
width: 600,
draggable: false,
resizable: false
}
var $dialog = $('<div></div>')
.html('Must become show action!')
.dialog(dialogOpts);
$('ae[data-remote=true]').live('click', function() {
$dialog.dialog('open');
return false;
});
$('#opeaner').click(function() {
$dialog.dialog('open');
// prevent the default action, e.g., following a link
return false;
});
});
$(function (){
$('aa.ajax').click(function() {
var url = this.href;
var dialog = $('<div></div>');
// load remote content
jQuery.ajax({type: 'GET'})
dialog.load(
url,
{},
function (responseText, textStatus, XMLHttpRequest) {
dialog.dialog();
}
);
//prevent the browser to follow the link
return false;
});
});
var request = function(options) {
$.ajax($.extend({ url : options.url, type : 'get' }, options));
return false;
};
// remote links handler
$('a[data-remote=true]').live('click', function() {
return request({ url : this.href });
});
</script>
我知道现在是一个大混乱, 但那是因为我一直在尝试很多东西所以我改变了一些标签 让新事物发挥作用。
到目前为止唯一有效的但却没有给我一个Show动作,只是一个常规动作 带有一些选项的对话框是:#opeaner one
非常感谢你!非常感谢!
答案 0 :(得分:0)
尝试在链接中指定方法(在这种情况下为get),以便达到show动作:
<%= link_to 'Show', trip, 'id' => 'showdialog', :remote => true, :method => :get %>