/*trying to send a variable named title with "Title -6ren">
gpt4 book ai didi

html - 将自定义变量发送给部分 - 中间人

转载 作者:太空宇宙 更新时间:2023-11-03 17:15:01 27 4
gpt4 key购买 nike

如何使用来自标记的调用将自定义变量发送到局部变量。

<%= partial (:contentHeader, :title=>"Title Goes here") %>
/*trying to send a variable named title with "Title Goes Here" to the partial*/

部分是这样的:

<div class = "contentHeader">
<h2><%=title%></h2>
</div>

所以输出结果应该是

<div class = "contentHeader">
<h2>Title Goes Here</h2>
</div>

最佳答案

使用:locals将变量发送给partial,

<%= partial(:contentHeader, :locals => { :title => "Title Goes here" }) %>

关于html - 将自定义变量发送给部分 - 中间人,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31116625/

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