无法在 Ruby on Rails 视图中输出嵌入式 Ruby 代码

发布于 2024-10-08 04:19:26 字数 372 浏览 1 评论 0原文

我的 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 技术交流群。

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

发布评论

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

评论(2

紫罗兰の梦幻 2024-10-15 04:19:26
<%= 'Hello World!' %>

这是因为没有 = 您的代码只会被处理。使用-,例如

<%- if true %>
  <%= "Hello" %>

仅显示Hello

<%= 'Hello World!' %>

its beacause without = your code is only processed. - is used e.g.

<%- if true %>
  <%= "Hello" %>

that will display only Hello

生寂 2024-10-15 04:19:26

您需要使用 = 符号:

<%= 'Hello World!' %>

You need to use an = sign:

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