Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果有人可以帮助我在 ez publish 中添加数组。
我有数组链接
{def $a = array(a,b,c)} {def $b = array(d,e)}
我想要一个像这样的数组中的输出
$c = array(a,b,c,d,e);
这肯定会奏效:
{def $c = merge($a,$b)}
输出:数组(a,b,c,d,e)