带有Angularjs的Redcarpet gem在rails应用程序中

时间:2013-06-18 05:40:37

标签: ruby-on-rails angularjs markdown

我正在使用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>

如何正确呈现数据?

我得到的是这样的:

enter image description here

在浏览器中:

enter image description here

1 个答案:

答案 0 :(得分:0)

您需要将post.summary预渲染作为JSON有效内容的一部分发送。或者您可以使用javascript替代方法,例如Showdown.js来呈现客户端的降价。

这些线只在渲染视图时渲染一次。

<h3><%= '{{post.title}}' %></h3>
<div><%= markdown.render("{{post.summary}}").html_safe %></div>

给你:

<h3>{{post.title}}</h3>
<div><p>{{post.summary}}</p></div>

Angular接管了这一点。目前还没有Ruby。