1

Haml + Mustacheを使用してブログを作成しようとしていますが、フィールド'description'にはCKEditorが含まれているため、フィールドには常にhtmlタグが含まれますが、'description.html_safe'を入力してもMustacheはhtmlとしてレンダリングされません。

私のヘルパー:

def post_for_mustache(post)
{
  post: {
    category: {
      url: category_order_path(:category => post.category.to_param),
      name: post.category.name
    },
    url: category_post_path(:category => post.category.to_param,
                            :slug => post.to_param),
    title: post.title,
    comment_enabled: post.comment_enabled,
    description: post.description.html_safe,
    title_escape: URI.escape(post.title),
    url_escape: URI.escape(category_post_url(:category => post.category.to_param,
                                             :slug => post.to_param)),
  }
}
end

私の口ひげ初期化子:

module MustacheTemplateHandler
  def self.call(template)
    haml = "Haml::Engine.new(#{template.source.inspect}).render"
    if template.locals.include? 'mustache'
      "Mustache.render(#{haml}, mustache).html_safe"
    else
      haml.html_safe
    end
  end
end
ActionView::Template.register_template_handler(:mustache, MustacheTemplateHandler)
4

1 に答える 1

4

私はあなたがあなたの口ひげでこのようなことをしていると推測しています:

{{description}}

HTMLが含まれている場合descriptionは、次のように言う必要があります。

{{{description}}}

細かいマニュアルから:

変数
[...]
すべての変数はデフォルトでHTMLエスケープされています。エスケープされていないHTMLを返す場合は、トリプル口ひげを使用します {{{name}}}

したがって{{description}}、MustacheによってHTMLエンコードされますが、{{{descriptipn}}}そのまま使用descriptionされます。

于 2012-08-02T18:51:38.790 に答える