html +导轨问题
我可以在 html 页面中添加 ruby/rails 代码吗?我的要求是,在我的 html 页面中显示一部分
这是否可能,如果可以,请告诉我如何做。
我当前的代码是:
index.html:
<%= render :partial => <partial>%>
所以我在这里尝试做的是将部分渲染到我的html页面。
我在 ubuntu 上使用 Rails 3。
提前致谢。
干杯, 萨梅拉
Can I add ruby/ rails code inside an html page. My requirement is, get a partial to display in my html page
Is this possible and if yes please show me how.
My current code is:
index.html:
<%= render :partial => <partial>%>
So what I'm trying to do here is have the partial rendered to my html page.
I'm using rails 3 on ubuntu.
Thanks in advance.
Cheers,
sameera
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样渲染部分:
这里有一些关于Rails 中的布局和视图的好信息。
You can render partial like this:
Here is some good information about layouts and views in Rails.