在 NHaml 中创建增量占位符
我想要达到的是一种在我的母版中添加脚本和样式占位符的方法。 它们将包括我的初始 site.css 和 jquery.js 文件。 然后,每个 haml 页面或部分页面都可以将自己所需的文件添加到这些占位符中。
目前,我正在我的母版中创建两个字符串,并将其附加到我的视图中。
这会导致渲染丑陋且容易出错。
有没有更好的方法来实现这个?
What I want to reach is a way to add a script and style placeholder in my master.
They will include my initial site.css and jquery.js files.
Each haml page or partial can then add their own required files to those placeholders.
Currently I'm creating two strings in my master that I append to in my views.
This results in an ugly and error prone rendering.
Is there a better way to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。 我就是这样做的到目前为止,它对我来说效果很好。
Yes. This is how I did it and so far it works great for me.