在Haml和Sinatra中显示原始HTML

时间:2011-10-06 18:44:32

标签: sinatra haml

我有一个简单的Sinatra应用程序执行HTTP调用,我想通过Haml在应用程序中显示响应标题和正文。这是我需要显示的HTTP输出

Response header
    #<Net::HTTPMovedPermanently:0x00000105852158>

Response body
    <html>
    <head>
    <title>bit.ly</title>
    </head>
    <body>
    <a href="http://www.csmonitor.com/Science/2011/1004/Nobel-Prize-for-physics-Universe-expansion-accelerating-not-slowing-down">moved here</a>
    </body>
    </html>

在Haml中执行此操作的正确方法是什么?这是我目前所拥有的,它没有正确处理原始html输出

@@ layout
!!! 1.1
%html
  %head
    %title Just do it!
    %link{:rel => 'stylesheet', :href => 'http://www.w3.org/StyleSheets/Core/Modernist', :type => 'text/css'}  
  = yield

@@ index
Header: 
%p= @resp.header
Body:
%p= @resp.body

我尝试使用html_saferaw,但它们在Sinatra中不可用。

1 个答案:

答案 0 :(得分:1)

想出来,就像这样的html_escape助手

@@ index
Header: 
%p= html_escape(@resp.header)
Body:
%p= html_escape(@resp.body)