0
我試圖實現http://blog.sosedoff.com/2011/04/09/serving-maintenance-page-with-rack-middleware/只有一個區別 - 我的消息是讀像這樣的整體* .html文件:輸出到Web瀏覽器
def default_prompt(t)
File.open("public/tmp/maintenance/maintenance.html", "r").read
end
和輸出
if File.exists?(@file)
body = @block.nil? ? default_prompt(time_info) : @block.call(time_info)
res = Response.new
res.write(body)
res.finish
else
@app.call(env)
但是我最終得到了html文件的文本,因爲輸出被<pre>
標籤包圍。
我該如何解決這個問題?