Sinatra 渲染文本文件
如何使用 Sinatra 中包含的布局渲染 html 文件?
How do I render an html file with the layout included in Sinatra?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 Sinatra 中包含的布局渲染 html 文件?
How do I render an html file with the layout included in Sinatra?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
使用您最喜欢的模板语言的助手之一。即,如果您使用
erb
,类似这样的东西可能对您有用:请注意,您的视图层次结构中需要一个
foo.erb
,以及一个名为的布局布局已定义。但是,如果您想使用自定义布局,这可能会满足您的需求:
Using one of the helpers for your favourite template language. I.e., if you use
erb
something like this may work for you:Noting that you'll need a
foo.erb
in your views hierarchy, and a layout namedlayout
defined. If you want to use a custom layout however, this may work for your needs: