我正在使用Redcarpet gem 来渲染降价。
这是我的posts_helper.rb
文件:
module PostsHelper
def markdown
options = [:autolink => true, :space_after_headers => true, :hard_wrap => true, :prettify => true]
Redcarpet::Markdown.new(Redcarpet::Render::HTML, *options)
end
end
它适用于我的视图文件index.html.erb
。
<% @posts.each do |post| %>
<tr>
<td><%= post.title %></td>
<td><%= markdown.render(post.summary).html_safe %></td>
<td><%= link_to 'Show', post %></td>
<td><%= link_to 'Edit', edit_post_path(post) %></td>
<td><%= link_to 'Destroy', post, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
但是,在我使用 Angular.js 之后,它就不起作用了。Redcarpet 无法解析来自 angular.js 的数据。我应该如何解决这个问题。
# app/assets/javascripts/app.js.coffee
window.App = angular.module('AngularPosts', ['ngResource'])
# app/assets/javascripts/angular/controller/posts_ctrl.js.coffee
App.controller 'PostsCtrl', ['$scope', 'Post', ($scope, Post) ->
$scope.posts = Post.query()
]
# app/assets/javascripts/angular/services/posts.js.coffee
App.factory 'Post', ['$resource', ($resource) ->
$resource '/posts/:id', id: '@id'
]
# app/views/home/index.html.erb
<div ng-controller="PostsCtrl">
<ul>
<li ng-repeat="post in posts">
<h3><%= '{{post.title}}' %></h3>
<div><%= markdown.render("{{post.summary}}").html_safe %></div>
</li>
</ul>
</div>
如何正确呈现数据?
我得到的是这样的:
在浏览器中: