我有一个简单的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_safe
和raw
,但它们在Sinatra中不可用。
答案 0 :(得分:1)
想出来,就像这样的html_escape
助手
@@ index
Header:
%p= html_escape(@resp.header)
Body:
%p= html_escape(@resp.body)