gpt4 book ai didi

ruby-on-rails - 带有 html 标签的 erb 中的 Ruby 三元运算符

转载 作者:数据小太阳 更新时间:2023-10-29 08:18:29 25 4
gpt4 key购买 nike

我正在尝试检查条件,然后包含“停止服务器”和“启动服务器” anchor 标记。我收到一个错误。

请告知要更改的内容。谢谢。

<%= condition ? "Running" <a href='/stop'> Stop Server </a> :"Stopped" <a href='/start'> Start Server</a> %> </td>

最佳答案

您正在混合代码和 html。这样做会更清楚:

<% if condition %>
"Running" <a href='/stop'> Stop Server </a>
<% else %>
"Stopped" <a href='/start'> Start Server</a>
<% end %>

关于ruby-on-rails - 带有 html 标签的 erb 中的 Ruby 三元运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21029942/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com