Liquid - Rails - render_component 问题
在我的下一个 Rails 项目中,我想使用液体页面(这样我的图形设计师就可以做他的事情而不必担心:D)我的问题是
我是否能够
在液体布局中使用 render_component 和 render :partial 命令。如果可能的话,如何
提前感谢
欢呼, 萨梅拉
In my next rails project I want to use liquid pages (so that my graphic designer can do his stuff without bothering be :D) By my question is
will i be able to use
render_component and render :partial commands inside my liquid layout. If possible how
thanks in advance
cheers,
sameera
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Liquid 提供了一个 include 标签,您可以在模板内使用它来包含外部模板。但是,它不能等同于 Rails 中的渲染组件或部分功能。
此外,渲染组件早已被弃用。你不应该使用它。
Liquid provides an include tag you can use inside a template to include external templates. However, it isn't equiparable to the render component or partial feature in Rails.
Also, render component has been deprecated times ago. You shouldn't use it.