Rails3.2.1开发环境下是否无法刷新haml视图?
我使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我以前也发生过这种情况,因为我的
.haml
文件旁边有.erb
文件。确保您没有任何
.erb
文件,因为它们似乎优先于.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...you wont see any changes to
home.html.haml