他
我的导轨应用程序(Post,Picture)中有两个模型,它们关联如下:
#Post model
has_many :pictures, :dependent => :destroy
accepts_nested_attributes_for :pictures, :allow_destroy => true
#Picture model
belongs_to :post
在我的帖子编辑视图中,我有两个表单,因此我可以编辑帖子内容以及向帖子添加图片。我使用jquery文件上传插件和carrierwave来处理上传过程。这看起来与http://tinyurl.com/aun7bl5
中的此设置非常相似当我进入帖子编辑视图时,jquery文件上传总是向我显示所有图片,因为它使用图片控制器的索引操作来获取所有图像并将它们呈现给json,因此jquery文件上传可以处理它们。索引操作如下所示。
def index
@pictures = Picture.all
render :json => @pictures.collect { |p| p.to_jq_upload }.to_json
end
编辑帖子时,post param(:id)可用于帖子控制器。我可以用记录器看到它。但它不能用于嵌套在post编辑表单中的索引操作。
现在我的问题是,如何在post控制器中提供索引操作以及我想要编辑的帖子的id,这样我就可以做到这样的事情来过滤它得到的图片:
def index
@pictures = Picture.where(:post_id => params[:id])
render :json => @pictures.collect { |p| p.to_jq_upload }.to_json
end
编辑:
#Post#edit view
<div class=post-well>
<div class="page-header">
<h1>Reisebericht editieren</h2>
</div>
<%= simple_form_for @post do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :title, :label => "Titel", :input_html => { :class => 'new-post-inputfields' } %>
<%= f.input :body, :label => "Artikel", :input_html => { :class => 'new-post-inputfields' } %>
<%= f.hidden_field :picture_ids, :input_html => { :id => 'post_picture_ids' } %>
<%= f.button :submit, :label => "Speichern" %>
</div>
<% end %>
<h4>Bilder verwalten</h4>
<%= simple_form_for Picture.new, :html => { :multipart => true, :id => "fileupload" } do |f| %>
<!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
<div class="row fileupload-buttonbar">
<div class="span7">
<!-- The fileinput-button span is used to style the file input field as button -->
<span class="btn btn-success fileinput-button">
<i class="icon-plus icon-white"></i>
<span>Hinzufügen</span>
<%= f.file_field :path, multiple: true, name: "picture[path]" %>
</span>
<button type="submit" class="btn btn-primary start">
<i class="icon-upload icon-white"></i>
<span>Upload</span>
</button>
<button type="reset" class="btn btn-warning cancel">
<i class="icon-ban-circle icon-white"></i>
<span>Abbrechen</span>
</button>
<button type="button" class="btn btn-danger delete">
<i class="icon-trash icon-white"></i>
<span>Delete</span>
</button>
<input type="checkbox" class="toggle">
</div>
<div class="span5">
<!-- The global progress bar -->
<div class="progress progress-success progress-striped active fade">
<div class="bar" style="width:0%;"></div>
</div>
</div>
</div>
<!-- The loading indicator is shown during image processing -->
<div class="fileupload-loading"></div>
<br>
<!-- The table listing the files available for upload/download -->
<table class="table table-striped"><tbody class="files" data-toggle="modal-gallery" data-target="#modal-gallery"></tbody>
</table>
<% end %>
</div>
<script>
var fileUploadErrors = {
maxFileSize: 'File is too big',
minFileSize: 'File is too small',
acceptFileTypes: 'Filetype not allowed',
maxNumberOfFiles: 'Max number of files exceeded',
uploadedBytes: 'Uploaded bytes exceed file size',
emptyResult: 'Empty file upload result'
};
</script>
<!-- The template to display files available for upload -->
<script id="template-upload" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<tr class="template-upload fade">
<td class="preview"><span class="fade"></span></td>
<td class="name"><span>{%=file.name%}</span></td>
<td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
{% if (file.error) { %}
<td class="error" colspan="2"><span class="label label-important">{%=locale.fileupload.error%}</span> {%=locale.fileupload.errors[file.error] || file.error%}</td>
{% } else if (o.files.valid && !i) { %}
<td>
<div class="progress progress-success progress-striped active"><div class="bar" style="width:0%;"></div></div>
</td>
<td class="start">{% if (!o.options.autoUpload) { %}
<button class="btn btn-primary">
<i class="icon-upload icon-white"></i>
<span>{%=locale.fileupload.start%}</span>
</button>
{% } %}</td>
{% } else { %}
<td colspan="2"></td>
{% } %}
<td class="cancel">{% if (!i) { %}
<button class="btn btn-warning">
<i class="icon-ban-circle icon-white"></i>
<span>{%=locale.fileupload.cancel%}</span>
</button>
{% } %}</td>
</tr>
{% } %}
</script>
<!-- The template to display files available for download -->
<script id="template-download" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<tr class="template-download fade">
{% if (file.error) { %}
<td></td>
<td class="name"><span>{%=file.name%}</span></td>
<td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
<td class="error" colspan="2"><span class="label label-important">{%=locale.fileupload.error%}</span> {%=locale.fileupload.errors[file.error] || file.error%}</td>
{% } else { %}
<td class="preview">{% if (file.thumbnail_url) { %}
<a href="{%=file.url%}" title="{%=file.name%}" rel="gallery" download="{%=file.name%}"><img src="{%=file.thumbnail_url%}"></a>
{% } %}</td>
<td class="name">
<a href="{%=file.url%}" title="{%=file.name%}" rel="{%=file.thumbnail_url&&'gallery'%}" download="{%=file.name%}">{%=file.name%}</a>
</td>
<td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
<td colspan="2"></td>
{% } %}
<td class="delete">
<button class="btn btn-danger" data-type="{%=file.delete_type%}" data-url="{%=file.delete_url%}">
<i class="icon-trash icon-white"></i>
<span>{%=locale.fileupload.destroy%}</span>
</button>
<input type="checkbox" name="delete" value="1">
</td>
</tr>
{% } %}
</script>
和javascript:
$(function () {
// Initialize the jQuery File Upload widget:
$('#fileupload').fileupload({
completed: function(e, data) {
console.log(data.result[0].picture_id);
$("#post_picture_ids").val(function(i,val) {
return val + (val ? ', ' : '') + data.result[0].picture_id;
});
}
});
// Load existing files:
$.getJSON($('#fileupload').prop('action'), function (files) {
var fu = $('#fileupload').data('fileupload'),
template;
fu._adjustMaxNumberOfFiles(-files.length);
template = fu._renderDownload(files)
.appendTo($('#fileupload .files'));
// Force reflow:
fu._reflow = fu._transition && template.length &&
template[0].offsetWidth;
template.addClass('in');
$('#loading').remove();
});
});
对此有任何帮助将不胜感激。
EDIT2:对于一个解决方案,请参阅下面的@SybariteManoj答案。另一种解决方案是使用:
$.getJSON($('#fileupload').prop('action') + '/' + $('#current_post_id').val(), function (files) {
在get函数的开头,然后为图片控制器添加一个路由,如下所示:
get 'pictures/:id', to: 'pictures#index'
图片控制器中的索引操作将过滤此解决方案中的id参数,如下所示:
def index
@pictures = Picture.where(:post_id => params[:id])
render :json => @pictures.collect { |p| p.to_jq_upload }.to_json
end
我认为我更喜欢@SybariteManoj的完整解决方案,因此不需要路由,索引操作现在就像这样。
def index
@pictures = Picture.where(:post_id => params[:post_id])
render :json => @pictures.collect { |p| p.to_jq_upload }.to_json
end
答案 0 :(得分:1)
由于您正在编辑帖子,因此帖子params[:id]
可用于帖子控制器的update
操作,而不是其他人,这是在rails中编辑表单后的默认操作调用。
如果您想要params[:id]
操作中的index
,那么您需要在调用更新操作后重定向到索引操作,或者您需要在更新中放置显示所选图片的逻辑只有行动。
您还可以创建自定义操作方法来处理显示属于帖子的图片的过程。
答案 1 :(得分:1)
我认为您的Picture
有一个名为post_id
的foreign_key,您只需在index
操作中使用此键即可获取属于Post
的图片。< / p>
尝试这样的事情:
def index
@pictures = @post.pictures
render :json => @pictures.collect { |p| p.to_jq_upload }.to_json
end
修改强>
由于您的图片belong_to
是您的帖子,因此您还需要修改new
和create
操作,以便为帖子创建图片。
这样做的一种方法是在find_post
控制器中创建一个方法Picture
,然后像这样进行before_filter
回调:
class PicturesController < ApplicationController
before_filter :find_post, :only => [:index, :new, :create]
def find_post
@post = Post.find(params[:post_id]) unless params[:post_id].nil?
end
def new
@picture = @post.pictures.new
end
## Same thing for the create action
end
在您看来,在创建表单时也要这样做:
<%= simple_form_for @post.pictures.new
希望这有帮助。
答案 2 :(得分:1)
我认为我是罪魁祸首。在您的javascript中,$.getJSON($('#fileupload').prop('action')
这是传递图片上传表单的操作属性的值。
尝试在编辑视图文件中的某处添加此行
<%= hidden_field_tag :current_post_id, @post.id, :id => 'current_post_id' %>
并替换此行
$.getJSON($('#fileupload').prop('action'), function (files) {
与
$.getJSON($('#fileupload').prop('action') + '?post_id=' + $('#current_post_id').val(), function (files) {
我没有测试过,但我确信这可以解决你的问题。