无法在 Ruby on Rails 视图中输出嵌入式 Ruby 代码
我的 Rails 应用程序遇到了一个非常小的问题。我正在设置 Mac OS X 来进行 Ruby on Rails 开发和测试。
但由于某些原因,我的视图无法正确呈现。我能够在我的视图中输出所有 HTML 内容,但是当我使用任何 Ruby/Rails 代码时,例如:
<% 'Hello World' %> or
<%- 'Hello World!' %>
它根本没有被输出...请帮助..我没有收到任何错误 - 什么也没有。
我的环境是:
Ruby: 1.9.2
Rails 3.0.3
OS: Mac OS X
谢谢。
I'm having a very small problem with my Rails App. I'm setting up a Mac OS X for Ruby on Rails development and testing purposes.
But for some reasons, my Views are not being rendered properly. I'm able to output all the HTML content in my views, but when i use any Ruby/Rails code such as:
<% 'Hello World' %> or
<%- 'Hello World!' %>
It is not being outputted at all... Please help.. I get no errors - nothing.
My environment is:
Ruby: 1.9.2
Rails 3.0.3
OS: Mac OS X
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为没有
=
您的代码只会被处理。使用-
,例如仅显示
Hello
its beacause without
=
your code is only processed.-
is used e.g.that will display only
Hello
您需要使用
=
符号:You need to use an
=
sign: