Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前,我正在练习一个 Sinatra 应用程序。我正在使用 slim 视图。
在我的 app/views/layout.slim 我有
h1 Sinatra App = yield
在我的 app/views/index.slim 文件中,我有
h3 Index page
当我去索引路线时,它显示<h3>Index Page</h3>为一个字符串。有没有办法我可以在产量上做 html_safe ?
<h3>Index Page</h3>
我相信这就是你想要的:
h1 Sinatra App == yield