Rails3.2.1开发环境下是否无法刷新haml视图?

发布于 2025-01-05 02:55:00 字数 62 浏览 0 评论 0原文

我使用Rails3.2.1和haml引擎,当我修改haml视图代码时发现页面无法更新。我确定我处于开发环境中。

I am using Rails3.2.1 and haml engine, I found that the page can not be update when I modified the haml view code. I am sure I am in development environment.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缘字诀 2025-01-12 02:55:00

我以前也发生过这种情况,因为我的 .haml 文件旁边有 .erb 文件。

确保您没有任何 .erb 文件,因为它们似乎优先于 .haml 文件。例如,如果您的文件是这样的...

app/views/pages/home.html.erb
app/views/pages/home.html.haml

您将不会看到 home.html.haml 的任何更改

I had this happen before because I had .erb files next to my .haml files.

Make sure you don't have any .erb files as they seem to take precedence over .haml files. For example if your files are like so...

app/views/pages/home.html.erb
app/views/pages/home.html.haml

you wont see any changes to home.html.haml

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文