0

この問題以外の理由で、イメージを作成するときにJSONで応答する必要があります。

<%=
  raw({
    ...
    :url => @image.url(:width => @width, :height => @height),
    :edit_link => render({:state => :image_edit_table_cell, :template_format => :html}, @image),
    # btw, I've also tried passing :format => :html
    :delete_link => link_to_destroy_image(@image, :remote => true, :path => url_for_event(:destroy, :image_id => @image)),
    ...
  }.to_json)
%>

ただし、そのJSONには、かなり凝ったHTMLを含めたいと思います。それを含めるために、状態/ビューをレンダリングします(部分でわかるように:edit_link)。これはimage_edit_table_cell.html.hamlウィジェットのビューです:

= link_to_edit_image @image, :remote => true
# ... doesn't really matter - as long as you know this is html.haml

ただし、画像を作成してJSONをレンダリングすると、次のMissing templateエラーが発生します。

ActionView::Template::Error (Missing template cell/rails/image_edit_table_cell with {:handlers=>[:builder, :rjs, :rhtml, :erb, :haml, :rxml], :locale=>[:en, :en], :formats=>[:json]} in view paths "/home/ramon/source/unstilted/app/widgets", "/home/ramon/source/unstilted/app/widgets/layouts" and possible paths image/table/image_edit_table_cellapplication/image_edit_table_cellapotomo/widget/image_edit_table_cellcell/rails/image_edit_table_cell):
    6:     :caption => @image.caption || "",
    7:     :text_tag => @image.text_tag(:width => @width, :height => @height),
    8:     :url => @image.url(:width => @width, :height => @height),
    9:     :edit_link => render({:state => :image_edit_table_cell, :template_format => :html}, @image),
    10:     :delete_link => link_to_destroy_image(@image, :remote => true, :path => url_for_event(:destroy, :image_id => @image)),
    11:     :success => true
    12:   }.to_json)
  app/widgets/image/table_widget.rb:37:in `image_edit_table_cell'
  app/widgets/image/table/new_image.json.erb:9:in `_app_widgets_image_table_new_image_json_erb___457172591_99648970_0'
  app/widgets/image/table_widget.rb:16:in `add_image'
  app/widgets/image/uploader_widget.rb:22:in `upload'

問題は、JSONファイルからレンダリングしているため、HTMLファイルを探す必要がないことです(したがって、探している形式はですjson。そのため、オプションが表示されます(ここ:template_file => :htmlから取得しました)。 )上記のコードの最初のブロック。

私はこれらの宝石を使用しています:

  • 「rails」、「3.0.10」
  • 「セル」、「3.6.2」
  • 「アポトモ」、「1.1.2」
4

1 に答える 1

0

どうやら、これは Rails の問題であり、Apotomo の問題ではありません。この答えは私のためにそれをしました!キーは、html ビューをレンダリングする前に、ビュー ファイルでフォーマットを設定することです。

<% self.formats = ["html"] %>
于 2011-08-25T14:16:47.740 に答える