我正在使用本教程,并开发了一个名为 ponies 的简单应用程序
这就是我在查看页面中的内容,
<% @ponies.each do |pony| %>
<tr>
<td><%= link_to 'Destroy', pony, method: :delete, data: { confirm: 'Are you sure?' }, :remote => true, :class => 'delete_pony' %> </td>
</tr>
<% end %>
在控制器中:
def destroy
@pony = Pony.find(params[:id])
@pony.destroy
respond_to do |format|
format.html { redirect_to ponies_url }
format.json { head :no_content }
format.js { render :layout => false }
end
end
显然,当我点击链接 Destroy 时,脚本“destroy.js.erb”文件被执行
alert("in destroy.js.erb");
$('.delete_pony').bind('ajax:success', function() {
alert("in destroy.js.erb inside ajax success");
$(this).closest('tr').fadeOut();
})
并成功删除了小马对象
但我创建了一个额外的链接
<td><%= link_to 'hussi', pony , method: :post, data: { confirm: 'Are you sure?' }, :remote => true, :class => 'preview_pony' %></td>
在控制器中创建预览方法
def preview
@pony = Pony.find(params[:id])
@hussi = @pony.name
puts @hussi
respond_to do |format|
format.html { redirect_to ponies_url }
format.json { head :no_content }
format.js { render :layout => false }
end
end
并且还创建了文件“preview.js.erb”
alert("in preview.js.erb");
$('.preview_pony').bind('ajax:success', function()
{
alert("you did it , hussain");
})
但是在点击链接预览时,写在“preview.js.erb”中的脚本永远不会被调用,任何解释为什么?
在第一个链接中,我们使用 HTTP 方法:delete
现在,如果我只想显示一些简单的方法或淡入/淡出一些 html 元素,我应该使用什么 http 方法
在行中:
<%= link_to 'hussi', pony , method: :post, data: { confirm: 'Are you sure?' }, :remote => true, :class => 'preview_pony' %>
我应该通过什么对象代替“小马”我应该使用什么方法代替“:删除”方法