Rails if 语句语法

发布于 2024-11-24 01:45:11 字数 168 浏览 2 评论 0原文

我已经编写了以下 ERB,但在问号处出现语法错误。 devise 的这个辅助函数当前评估为 false。我错过了什么?

<%= if user_signed_in? %>
<%= render 'form' %>
<%= end %>

I've written the following ERB and am getting a syntax error at the question mark. This helper function from devise currently evaluates as false. What have I missed?

<%= if user_signed_in? %>
<%= render 'form' %>
<%= end %>

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

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

发布评论

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

评论(3

锦欢 2024-12-01 01:45:11

试试这个:

<% if user_signed_in? %>
  <%= render 'form' %>
<% end %>

如果你这样做<%= ... %>,它会尝试输出你放在标签之间的东西。但是,如果您执行 <% ... %>,则不会处理任何输出,只会评估代码。如果这不起作用,那么您的 user_signed_in 可能有问题?辅助方法。

Try this :

<% if user_signed_in? %>
  <%= render 'form' %>
<% end %>

If you do <%= ... %>, it will try to output the thing you put between the tags. But, if you do <% ... %>, then no output is processed, just the code is evaluated. If this is not working, then there is probably something wrong with your user_signed_in? helper method.

追我者格杀勿论 2024-12-01 01:45:11

<%= 将尝试输出您的 user_signed_in? 帮助程序,因此请尝试:

<% if user_signed_in? %>
  <%= render 'form' %>
<% end %>

或者甚至更好(并且不那么混乱):

<%= render 'form' if user_signed_in? %>

<%= will try to output your user_signed_in? helper, so try:

<% if user_signed_in? %>
  <%= render 'form' %>
<% end %>

or even better (and less confusing):

<%= render 'form' if user_signed_in? %>
脱离于你 2024-12-01 01:45:11

试试这个

<% if user_signed_in? %>
    <%= render 'form' %>
<% end %>

try this

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