Rails if 语句语法
我已经编写了以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
如果你这样做<%= ... %>,它会尝试输出你放在标签之间的东西。但是,如果您执行 <% ... %>,则不会处理任何输出,只会评估代码。如果这不起作用,那么您的 user_signed_in 可能有问题?辅助方法。
Try this :
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.
<%=
将尝试输出您的user_signed_in?
帮助程序,因此请尝试:或者甚至更好(并且不那么混乱):
<%=
will try to output youruser_signed_in?
helper, so try:or even better (and less confusing):
试试这个
try this