最佳答案 ERB 码头 here说 % a line of Ruby code -- treated as (o-6ren">
gpt4 book ai didi

ruby-on-rails - <%%= 在 Ruby on Rails 中是什么意思?

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

除了在我正在处理的项目中,我无法在任何地方找到它。它的工作方式与 <%= 不同(我试图改变),但我无法理解其中的区别。

<span class="option-content" placeholder="<%=t('pages.edit.option')%>">
<%%= content %>
</span>

最佳答案

ERB 码头 here

<% Ruby code -- inline with output %>
<%= Ruby expression -- replace with result %>
<%# comment -- ignored -- useful in testing %>
% a line of Ruby code -- treated as <% line %> (optional -- see ERB.new)
%% replaced with % if first thing on a line and % processing is used
<%% or %%> -- replace with <% or %> respectively

这意味着

<%%= content %>

将被替换为

<%= value of content %>

关于ruby-on-rails - <%%= 在 Ruby on Rails 中是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40487162/

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